# Get all execution components logs Endpoint: GET /execution-component-log Version: 5.1.45 Security: api_key ## Query parameters: - `execution_id` (integer, required) The ID of the Execution to get all component logs - `page_number` (integer) The page number for which to get executions component. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"executionId":123,"componentId":67,"componentName":"table_00","fileDownloadId":"EXECUTION_LOGS-AB8aCbcdDe=="}] - `responseList.executionId` (integer) The ID of the execution for the referenced job. This field is generated by the Masking Engine when a job is run. Example: 123 - `responseList.componentId` (integer) The ID of the execution component. Example: 67 - `responseList.componentName` (string) Name of the execution component Example: "table_00" - `responseList.fileDownloadId` (string) This value is returned on GET. It can be fed into the file-downloads endpoint. Example: "EXECUTION_LOGS-AB8aCbcdDe==" ## Response 400 fields ## Response 403 fields