Payout service APIs
Payout service APIs (1.0.0)
Overview
Languages
Servers
Mock server
https://docs.ripple.com/_mock/products/payments-direct/api-docs/payout-service/payout-service
Bodyapplication/jsonrequired
Time that webhook for payout update status request was triggered from Tranglo using the format dd-mm-yyyy HH:mm:ss
Example: "Date"
TransactionStatus object that holds the 3 digit transaction code, type and status from Tranglo
Example: {"Status":"Status","Type":null,"Value":0,"Remark":"Remark"}
3 digit transaction response code. See https://tranglo.com/docs/tranglo-connect/request-response-code-description/transaction-status/
Tranglo manual adjustment transaction id. This is an optional field that will be returned when an adjustment is made
Example: "GTNMA"
The datetime when the transaction was recorded by Tranglo
Example: "txCreateDateTime"
The datetime when the transaction was last updated
Example: "txUpdateDateTime"
- Mock serverhttps://docs.ripple.com/_mock/products/payments-direct/api-docs/payout-service/payout-service/v1/webhooks/tranglo/payout_status
- curl
- Python
- JavaScript
curl -i -X POST \
https://docs.ripple.com/_mock/products/payments-direct/api-docs/payout-service/payout-service/v1/webhooks/tranglo/payout_status \
-H 'Content-Type: application/json' \
-d '{
"GTN": "GTN",
"Description": "Description",
"PayoutStatus": null,
"transID": "transID",
"PayoutID": "PayoutID",
"trxStatus": {
"Status": "Status",
"Type": null,
"Value": 0,
"Remark": "Remark"
},
"txCreateDateTime": "txCreateDateTime",
"Date": "Date",
"app_key": "app_key",
"to_balance": "to_balance",
"PayoutStatusUpdateTime": "PayoutStatusUpdateTime",
"from_balance": "from_balance",
"checksum": "checksum",
"PayoutPin": "PayoutPin",
"GTNMA": "GTNMA",
"txUpdateDateTime": "txUpdateDateTime"
}'