CorebanqCorebanq Developer Docs
Transfersv1Events

List transfer events

List transfer events using the standard get_all query format (search.*, sort, limit, offset, stack).

GET/v1/transfers/events

Authorization

BearerAuth
AuthorizationBearer <token>

JWT authentication token

In: header

Query Parameters

search.transfer_id?string

Filter by transfer ID

search.event_type?string

Filter by event type (DSL-defined events, or 'status_change' for status change records). Only 'init' and 'complete' are system events.

search.from_status?string

Filter by from_status

search.to_status?string

Filter by to_status

search.created_by?string

Filter by creator user ID

search.error_code?string

Filter by error code

search.error_message?string

Filter by error message

stack?string

Stack response data by a field (e.g. stack=event_type or stack=created_at[YYYY-MM-DD])

sort?string

Sort field (prefix with - for descending). Example: -created_at or event_type

limit?integer

Number of items per page

offset?integer

Starting position for pagination

Header Parameters

Accept-Language?string

Language preference for the response

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/transfers/events"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "transfer_id": "d4a2d8dd-7def-4545-a062-761683b9aa05",
      "created_at": "2019-08-24T14:15:22Z",
      "created_by": "ee824cad-d7a6-4f48-87dc-e8461a9201c4",
      "event_type": "string",
      "from_status": "string",
      "to_status": "string",
      "payload": {},
      "context": {},
      "dsl_trace_id": "string",
      "error_code": "string",
      "error_message": "string"
    }
  ],
  "total": 0,
  "total_unfiltered": 0,
  "has_more": true,
  "keys": [
    "string"
  ]
}
{
  "status": 0,
  "message": "string"
}
{
  "status": 0,
  "message": "string"
}
{
  "status": 0,
  "message": "string"
}