JobFailedEvent
Usage
JSON Payload
{
"event_id": "(UUID format) - Unique identifier for the event.",
"event_type": "Describes the type of event that occurred.",
"event_time": "(floating-point numeric timestamp) - Unix timestamp representing the time when the event occurred, rounded to whole seconds.",
"event": {
"event_name": "Name of the specific event.",
"event_type": "Type of the event, often matching or related to the outer event_type.",
"company_id": "(UUID format) - Unique identifier for the company associated with the event.",
"company_name": "Name of the company involved in the event.",
"job_id": "(UUID format) - Unique identifier for the job that has failed.",
"retries": "Integer - The number of attempts made to complete the job successfully.",
"exceeded_retries": "Boolean - Indicates whether the number of attempts has surpassed the allowed threshold, which in this case is 'false', meaning more attempts might be possible.",
"error_messages": "Array of Strings - List of error messages explaining the reasons for the job's failure, such as connectivity issues and timeouts, which help in troubleshooting.",
"creation_date": "(ISO 8601 date format) - Date and time when the job was initially created.",
"update_date": "(ISO 8601 date format) - Date and time when the job or event details were last updated."
}
}
Last updated
Was this helpful?