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 Extracted Data Delete

Usage

This file event triggers when the extracted information of a file has been deleted. More specifically, this event triggers when the content has been deleted.

Once the extracted data is deleted, this file will skip the sorting, indexing, and data point extraction stages of the pipeline.

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 hundredths of a second.",
  "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.",
    "content": "Text - Previously extracted textual content or data from the file that is now being deleted.",
    "provider": "Name of the service provider that performed the data extraction and is now managing its deletion.",
    "creation_date": "(ISO 8601 date format) - Date and time when the extracted data was initially created.",
    "update_date": "(ISO 8601 date format) - Date and time when the extracted data or event log was last updated."
  }
}
{
  "event_id": "qrst5678-uv90-1234-wx56-yzab78901234",
  "event_type": "file_event_type",
  "event_time": "1651426789.20",
  "event": {
    "event_name": "file_extracted_data_delete_event",
    "event_type": "file_event_type",
    "company_id": "789o0123-p45q-89r1-s234-567814184000",
    "company_name": "DataSolutions Inc",
    "file_log_id": "567p1234-q56r-90s2-t345-678914185000",
    "content": "Previously extracted text content that is now being deleted...",
    "provider": "DataExtractionService",
    "creation_date": "2023-05-05T13:25:00Z",
    "update_date": "2023-05-06T14:30:00Z"
  }
}

Last updated 1 year ago

Was this helpful?