v1

latestOpenAPI 3.1.02026-07-14159142161.9 KB
history

Get history for a specific service and entity

Returns the history of changes for the given service and entity.

get/history/v1/{service}/{entity_table_name}/{id}

Path parameters

servicestring required

The name of the service

entity_table_namestring required

The name of the entity table

idstring required

The ID of the entity

Query parameters

pageinteger

The page number for pagination

liststring

Filter for listing items

actionstring

The type of action performed

Response

Successfully retrieved history

Example response

{
  "data": [
    {
      "changed_by": "3",
      "changed_at": "1723721790",
      "items": [
        {
          "field_id": "comment",
          "action": "create",
          "to": {
            "value": "1724778698",
            "display_value": "New Value"
          }
        }
      ]
    }
  ]
}