Skip to main content
GET
/
api
/
subscriptions
/
{subscriptionId}
/
executionLogs
List execution logs
curl --request GET \
  --url https://api.sandbox.tracefinance.com/api/subscriptions/{subscriptionId}/executionLogs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "7c9b46e8-3f33-4edc-94e2-bd4b58e0c62f",
      "companyId": "11111111-1111-1111-1111-111111111111",
      "subscriptionId": "8a13c6a4-1a3d-4f49-ad62-9dca8c47e2c6",
      "messageId": "9f1d83b2-4d6c-49ad-9bb6-8cf4a3a25de0",
      "eventType": "OPERATION_REQUESTED",
      "url": "https://api.example.com/trace-webhooks",
      "payload": "{\"id\":\"1f3a8c8d-2e1a-4b3a-9d2e-7c1a4b3a9d2e\",\"customerId\":\"...\",\"atTime\":\"2026-04-28T14:32:11Z\"}",
      "httpStatus": 200,
      "status": "SUCCESS",
      "retryAttempts": 0,
      "createdAt": "2026-04-28T14:32:11Z",
      "updatedAt": "2026-04-28T14:32:12Z",
      "error": null
    }
  ],
  "meta": {
    "previousCursor": null,
    "nextCursor": "eyJpZCI6ImFjY18wMDIifQ",
    "total": 10
  }
}

Documentation Index

Fetch the complete documentation index at: https://tracefinance-docs-withdrawal-beneficiary-events.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT bearer token. Include as Authorization: Bearer <token>. See the Authentication guide for how to obtain one.

Headers

X-Trace-Version
string

API version. Omit to use the default version.

Example:

"1"

Path Parameters

subscriptionId
string<uuid>
required

UUID of the subscription.

Query Parameters

limit
integer
default:10

Maximum number of items to return. Defaults to 10.

Required range: 1 <= x <= 100
cursor
string

Opaque cursor for fetching the next or previous page.

direction
enum<string>

Direction of pagination relative to the cursor.

Available options:
NEXT,
PREVIOUS
sortOrder
enum<string>
default:DESCENDING

Sort order for results. Defaults to DESCENDING.

Available options:
ASCENDING,
DESCENDING
filters
string

Filter expression using LHS Brackets syntax (field[operator]=value). Combine multiple conditions with and(...), or(...), or ; (implicit AND). See the Filtering guide for the full operator catalog and examples.

Response

Paginated list of execution logs.

data
object[]
required
meta
object
required

Cursor-based pagination metadata.