File Update

Usage

This file event triggers when the classification status of a specific file changes due to automatic or manual intervention.

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 involved in the event.",
    "company_name": "Name of the company involved in the event.",
    "file_id": "(UUID format) - Unique identifier for the file associated with the event.",
    "file_log_id": "(UUID format) - Unique identifier for the log entry related to the file event.",
    "file_name": "Filename of the document including its extension.",
    "file_name_without_extension": "Filename of the document excluding its extension.",
    "blob_name": "Path identifier of the document within the storage system.",
    "blob_url": "URL - Fully qualified URL where the document is stored, accessible via HTTP or HTTPS.",
    "creation_date": "(ISO 8601 date format) - Date and time when the file was initially created.",
    "update_date": "(ISO 8601 date format) - Date and time when the file or event was last updated."
  }
}

Last updated

Was this helpful?