JobFinishedEvent

Usage

This event triggers when a job successfully navigates through all stages of its state machine, completing the document processing workflow.

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 been successfully completed.",
    "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 was last updated, marking the successful completion of the job."
  }
}
{
  "event_id": "u7v8w9x0-y1z2-a3b4-c5d6-e7f8g9h0i1j2",
  "event_type": "job_event_type",
  "event_time": "1653240900.00",
  "event": {
    "event_name": "job_finished_event",
    "event_type": "job_event_type",
    "company_id": "56789012-6789-6789-6789-6789012345gh",
    "company_name": "Tech Pioneers",
    "job_id": "67890123-7890-7890-7890-7890123456hi",
    "creation_date": "2023-05-22T16:30:00Z",
    "update_date": "2023-05-22T17:50:00Z"
  }
}

Last updated

Was this helpful?