Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
Transaction status changed
{
"Transaction Status Changed": {
"value": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "core.transaction.status-changed",
"createdAt": "2021-01-01T00:00:00Z",
"data": {
"transaction": {
"id": "623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0",
"origin": {
"amount": "100.00",
"asset": "GBP",
"rate": "47619.04761904762",
"node": {
"type": "account",
"id": "b98e4f0d-a67d-4126-a99d-666f7e0315d9"
}
},
"destination": {
"amount": "0.0021",
"asset": "BTC",
"rate": "0.000021",
"node": {
"type": "account",
"id": "555a99a1-620d-4431-a0ac-b43e1aad2bdc"
}
},
"denomination": {
"amount": "100.00",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [],
"status": "completed",
"quotedAt": "2024-07-24T15:02:39Z",
"createdAt": "2024-07-24T15:22:39Z",
"updatedAt": "2024-07-24T15:32:39Z"
}
}
}
}
}
Headers
The unique identifier of the webhook.
The timestamp of the webhook, in seconds after the Unix epoch.
The signature of the webhook.
Body
The webhook event information.
The id of the event.
The type of event.
The date and time when the event was created.
The event payload.
The id of the transaction.
The origin of the transaction.
The asset of the endpoint.
The amount of the endpoint.
The rate of the endpoint against its counter-part (origin to destination and vice-versa).
The destination of the transaction.
The asset of the endpoint.
The amount of the endpoint.
The rate of the endpoint against its counter-part (origin to destination and vice-versa).
The fees of the transaction.
The type of the fee.
deposit
, exchange
, network
, withdrawal
The code of the fee.
The asset in which the fee is denominated.
The amount of the fee.
The percentage of the fee, if the amount was calculated from a percentage.
Status of the transaction.
processing
, on-hold
, completed
, failed
The time at which the quote was created.
The time at which the transaction was created.
The last time at which the transaction was updated.
The denomination of the transaction.
The asset in which the transaction is denominated.
The amount of the transaction.
The rate against the specified target (origin or destination).
Whether this exact amount should be paid by the origin or received by the destination.
origin
, destination
Response
Return a 200 status to indicate that the data was received successfully.
{
"Transaction Status Changed": {
"value": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "core.transaction.status-changed",
"createdAt": "2021-01-01T00:00:00Z",
"data": {
"transaction": {
"id": "623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0",
"origin": {
"amount": "100.00",
"asset": "GBP",
"rate": "47619.04761904762",
"node": {
"type": "account",
"id": "b98e4f0d-a67d-4126-a99d-666f7e0315d9"
}
},
"destination": {
"amount": "0.0021",
"asset": "BTC",
"rate": "0.000021",
"node": {
"type": "account",
"id": "555a99a1-620d-4431-a0ac-b43e1aad2bdc"
}
},
"denomination": {
"amount": "100.00",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [],
"status": "completed",
"quotedAt": "2024-07-24T15:02:39Z",
"createdAt": "2024-07-24T15:22:39Z",
"updatedAt": "2024-07-24T15:32:39Z"
}
}
}
}
}