{
"params": {
"id": "6c568238-11f0-4120-9ca0-c5dac1640793",
"status": "completed",
"type": "withdrawal",
"fiat": {
"id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"amount": "100.00"
},
"credited_at": "2025-08-07T15:04:05Z",
"errors": []
}
}{
"params": {
"id": "6c568238-11f0-4120-9ca0-c5dac1640793",
"status": "failed",
"type": "withdrawal",
"fiat": {
"id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"amount": "100.00"
},
"credited_at": null,
"errors": [
{
"code": "transaction.expired",
"title": "Transaction expired"
}
]
}
}Authorization: ********************200, 201, 202 or 204 status to indicate that the data was received successfullycurl --location --request POST 'https://your-api-server.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"params": {
"id": "6c568238-11f0-4120-9ca0-c5dac1640793",
"status": "completed",
"type": "withdrawal",
"fiat": {
"id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"amount": "100.00"
},
"credited_at": "2025-08-07T15:04:05Z",
"errors": [
{
"code": "transaction.expired",
"title": "Transaction expired"
}
]
}
}'