v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Audit Trails

List audit trails

List and filter audit trail events.

get/audit_trails

Query parameters

limitinteger
Example:25
starting_afterstring uuid
Example:9007b3b2-2c77-49c3-a3be-e71eab300a68

The ID of the object from which your list request will start. It is not included in the result.

sort_order'asc' | 'desc'

Order is based on attribute created_at. If asc, results are fetched in chronological order. If desc, results are fetched in reversed chronological order. Default order is desc.

start_datestring date
Example:2025-07-08

The creation date of the audit trail.

end_datestring date
Example:2025-07-08

The creation date of the audit trail.

object_idstring uuid
Example:0750d769-3860-4ef6-9f46-57a91191a080

The ID of the object that was affected by the action.

Response

List of filtered audit trails.

Example response

{
  "records": [
    {
      "id": "9007b3b2-2c77-49c3-a3be-e71eab300a68",
      "object": "audit_trail",
      "author_type": "dashboard",
      "author_id": "bdb650e4-92f7-5daa-93bd-02c0f1f6ad7c",
      "author_name": "John Doe",
      "type": "payment_order_created",
      "public_name": "Payment order created",
      "object_type": "payment_order",
      "object_id": "0750d769-3860-4ef6-9f46-57a91191a080",
      "created_at": "2025-07-08T08:50:51.974246244Z"
    }
  ]
}