File Property Create

Usage

This file event triggers when the binary information of a file is updated and results in the creation of a new property of said file.

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_log_id": "(UUID format) - Unique identifier for the log entry related to the file event.",
    "name": "Name of the property being created for the file.",
    "value": "Value of the property being created, indicating the type or category of the file.",
    "creation_date": "(ISO 8601 date format) - Date and time when the property was initially created.",
    "update_date": "(ISO 8601 date format) - Date and time when the property or file event was last updated."
  }
}
{
  "event_id": "ijkl9876-rstv-6789-fghi-6789defg0123",
  "event_type": "file_event_type",
  "event_time": "1651932300.00",
  "event": {
    "event_name": "file_property_create_event",
    "event_type": "file_event_type",
    "company_id": "45678901-4567-4567-4567-4567890123de",
    "company_name": "NextGen Innovations",
    "file_log_id": "10987654-7654-7654-7654-543210987654",
    "name": "Document Type",
    "value": "Confidential Report",
    "creation_date": "2023-05-17T14:25:00Z",
    "update_date": "2023-05-17T15:40:00Z"
  }
}

Last updated

Was this helpful?