# Get all execution logs Endpoint: GET /execution-logs Version: 5.1.47 Security: api_key ## Query parameters: - `job_id` (integer) The ID of the job to get all executions for - `page_number` (integer) The page number for which to get executions. 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 - `execution_status` (string) The status of the job execution. Note that, if this parameter is excluded, then all executions will be returned. Enum: "CANCELLED", "FAILED", "QUEUED", "RUNNING", "SUCCEEDED", "WAITING", "WARNING" ## 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,"jobId":167,"fileDownloadId":"EXECUTION_LOGS-AB8aCbcdDe==","status":"SUCCEEDED"}] - `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.jobId` (integer) The ID of the job that is being executed. Example: 167 - `responseList.fileDownloadId` (string) This value is returned on GET. It can be fed into the file-downloads endpoint. Example: "EXECUTION_LOGS-AB8aCbcdDe==" - `responseList.status` (string) The status of the execution regarding its completion. Enum: "CANCELLED", "FAILED", "QUEUED", "RUNNING", "SUCCEEDED", "WARNING" ## Response 400 fields ## Response 401 fields ## Response 403 fields