# Get all execution events Get events, such as warnings or errors, associated with job executions. Endpoint: GET /execution-events Version: 5.1.41 Security: api_key ## Query parameters: - `execution_id` (integer) The ID of the execution to get all events for - `page_number` (integer) The page number for which to get execution events. 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: [{"executionEventId":1,"executionId":1,"eventType":"UNMASKED_DATA","severity":"WARNING","cause":"PATTERN_MATCH_FAILURE","count":1,"timeStamp":"2018-11-06T04:14:46.929+0000","executionComponentId":1,"maskedObjectName":"DB_FIELD_NAME","algorithmName":"MyAlgorithm"}] - `responseList.executionEventId` (integer) The ID of the execution event. Example: 1 - `responseList.executionId` (integer) The ID of the execution. Example: 1 - `responseList.eventType` (string) The type of execution event. Enum: "JOB_ABORTED", "UNMASKED_DATA", "MASKING_FALLBACK", "FILE_PATTERN_NO_MATCH", "DATA_FETCH_FAIL" - `responseList.severity` (string) The severity of the execution event. Enum: "INFO", "WARNING", "CRITICAL" - `responseList.cause` (string) The cause of the execution event. Enum: "UNHANDLED_EXCEPTION", "IGNORED_EXCEPTION", "PATTERN_MATCH_FAILURE", "PREMASK_TYPE_CONVERSION_FAILURE", "POSTMASK_TYPE_CONVERSION_FAILURE", "EXTENDED_ALGORITHM_FAILURE", "DRIVER_SUPPORT_TASK_FAILURE", "DATA_NOT_FOUND_FAILURE", "INVALID_JOB_CONFIGURATION", "DATA_QUERY_TIMEOUT" - `responseList.count` (integer) The number of times the execution event occurred. Example: 1 - `responseList.timeStamp` (string) The date and time that this execution event first occurred. Example: "2018-11-06T04:14:46.929+0000" - `responseList.executionComponentId` (integer) The ID of the execution component with which this execution event is associated Example: 1 - `responseList.maskedObjectName` (string) The name of the column, field, or other object being masked when this event occurred, if applicable. Example: "DB_FIELD_NAME" - `responseList.maskedObjectParentName` (string) The parent name of the field being masked when this event occurred. It will be only applicable for Document Store Type columns and value will be column name - `responseList.algorithmName` (string) The name of the masking algorithm running when this event occurred, if applicable. Example: "MyAlgorithm" - `responseList.exceptionType` (string) The Java class of the exception that triggered this event, if applicable. - `responseList.exceptionDetail` (string) The details associated with the Java exception that triggered this event, if applicable. ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 404 fields