File Add To Job
Usage
Example 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, including milliseconds.",
"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 associated with the event.",
"file_id": "(UUID format) - Unique identifier for the file involved in the event.",
"job_id": "(UUID format) - Unique identifier for the job associated with the file and event."
}
}{
"event_id": "e0f8b2e6-c1c9-4b34-8e5f-a10b7b760e75",
"event_type": "file_event_type",
"event_time": "1651018865.75",
"event": {
"event_name": "file_added_to_job_event",
"event_type": "file_event_type",
"company_id": "123e4567-e89b-12d3-a456-426614174000",
"company_name": "Example Company",
"file_id": "123e4567-e89b-12d3-a456-426614174001",
"job_id": "123e4567-e89b-12d3-a456-426614174002"
}
}Last updated
Was this helpful?