Skip to main content

History Model

Overview

The history table is used to log and track task executions, workflows, or actions performed within the system, tied to a specific object or application. It serves as a historical log or audit trail for operational monitoring, debugging, reporting, or rollback mechanisms.

Fields

FieldTypeDescriptionRequired
idstringid field
taskanytask field
application_idanyapplication_id field
statusstringstatus field
object_idanyobject_id field
originanyorigin field
actionanyaction field
created_atdatecreated_at field
modified_atdatemodified_at field

Sample JSON

{
"id": "example_value",
"task": "example_value",
"application_id": "example_value",
"status": "example_value",
"object_id": "example_value",
"origin": "example_value",
"action": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}