v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Audit Trails

Retrieve audit trail

Retrieve the details of a specific audit trail.

get/audit_trails/{id}

Path parameters

idstring uuid required
Example:9007b3b2-2c77-49c3-a3be-e71eab300a68

The ID of the audit trail.

Response

Successfully retrieved audit trail.

idstring uuid required

The UUID of the audit trail.

objectstring required

Type of the object, audit_trail.

author_typestring required

The type of the author who performed the action.

author_idstring required

The ID of the author who performed the action.

author_namestring required

The name of the author who performed the action.

typestring required

The type of the audit trail.

public_namestring required

The human-readable name of the audit trail.

object_typestring required

The type of object that was affected by the action.

object_idstring uuid required

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

created_atstring date-time required

The UTC timestamp when the audit trail was created.

Example response

{
  "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"
}