Alfred v1.66.3.0
Alfred
Alfred
  • Introduction
  • Authentication
  • Event API
    • File Events
      • File Add To Job
      • File Category Create
      • File Category Delete
      • File Change Tag
      • File Done
      • File Extracted Data Create
      • File Extracted Data Delete
      • File Failed
      • File Move
      • File Move To Pending
      • File Move To Recycle Bin
      • File Property Create
      • File Property Delete
      • File Remove Tag
      • File Status Update
      • File Update
    • Job Events
      • JobCreateEvent
      • JobExceededRetriesEvent
      • JobFailedEvent
      • JobFinishedEvent
      • JobInvalidEvent
      • JobRetryEvent
      • JobStageUpdateEvent
      • JobStartEvent
    • Event Structures
  • endpoints
    • Alfred
    • File
      • Remote Sources
      • File Status
    • Deferred Session
    • Job
      • Job Stages
    • Tag
    • Metadata
    • Metadata Values
    • Report
    • Account
    • Company
Powered by GitBook
On this page
  • Usage
  • JSON Payload

Was this helpful?

  1. Event API
  2. File Events

File Property Delete

Usage

This file event triggers when the binary information from a file has been deleted.

Once this event triggers, this file will stop classifying, indexing and the configured data points will not be extracted.

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 deleted from the file.",
    "value": "Value of the property being deleted, indicating the type or security level 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": "mnop0123-uvwx-0123-ijkl-9012ghij3456",
  "event_type": "file_event_type",
  "event_time": "1652033400.00",
  "event": {
    "event_name": "file_property_delete_event",
    "event_type": "file_event_type",
    "company_id": "56789012-5678-5678-5678-5678901234ef",
    "company_name": "Advanced Technologies",
    "file_log_id": "21098765-8765-8765-8765-654321098765",
    "name": "Security Level",
    "value": "High Confidential",
    "creation_date": "2023-05-18T16:30:00Z",
    "update_date": "2023-05-18T17:45:00Z"
  }
}

Last updated 1 year ago

Was this helpful?