- TranSwap Api v1.8.8
- Access Token
- Accounts
- Contacts
- Conversions
- References
- Transfers
- Wallets
- CallBacks
Deposit Notification
POST
/v1/CallBacks/Deposit
CallBacks
Last modified:2024-09-11 00:41:03
Maintainer:Not configured
Deposit Notification
simulation.Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
The Abstract CallBack information used in CallBacks APIs.
event_id
string <uuid>
optional
account_id
string <uuid>
optional
status
stringÂ
optional
status_message
stringÂ
optional
previous_status
stringÂ
optional
created_timestamp
stringÂ
optional
(e.g 2018-03-22T16:08:02+00:00)
deposit_id
string <uuid>
optional
deposit_number
stringÂ
optional
Example
{
"event_id": "a7a26ff2-e851-45b6-9634-d595f45458b7",
"account_id": "449e7a5c-69d3-4b8a-aaaf-5c9b713ebc65",
"status": "completed",
"status_message": "completed",
"previous_status": "inprogress",
"created_timestamp": "2020-03-22T16:08:02+00:00",
"deposit_id": "fa08a66a-d1a9-4575-b53b-691ceef6ab4e",
"deposit_number": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/CallBacks/Deposit' \
--header 'Content-Type: application/json' \
--data-raw '{
"event_id": "a7a26ff2-e851-45b6-9634-d595f45458b7",
"account_id": "449e7a5c-69d3-4b8a-aaaf-5c9b713ebc65",
"status": "completed",
"status_message": "completed",
"previous_status": "inprogress",
"created_timestamp": "2020-03-22T16:08:02+00:00",
"deposit_id": "fa08a66a-d1a9-4575-b53b-691ceef6ab4e",
"deposit_number": "string"
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{}
Modified at 2024-09-11 00:41:03