cURL
curl --request POST \ --url https://api.example.com/customer/wire \ --header 'Content-Type: application/json' \ --header 'X-API-NONCE: <x-api-nonce>' \ --header 'X-API-SIGNATURE: <x-api-signature>' \ --header 'X-API-SUBSCRIPTION-KEY: <x-api-subscription-key>' \ --header 'X-API-TIMESTAMP: <x-api-timestamp>' \ --data ' { "sending_account_id": "<string>", "external_account_id": "<string>", "amount": 123, "purpose": "<string>" } '
{ "message": "<string>", "data": { "transaction_id": "57g40zMpwoQS9dHnDUIy2pxN", "sending_account_id": "57g3dnEZXOFgYN4yCSVitRcV", "external_account_id": "54_6HvEVoz7Sr929DXXwOGXn", "amount": 100.99, "note": "Payment for invoice 1234" } }
Submit a wire transfer request to withdraw funds via wire.
Signature header
Timestamp header
Nonce header
Account ID header
Schema to deserialize the transaction withdraw request.
Sending account ID
"57g40zMpwoQS9dHnDUIy2pxN"
Account id
"57g3dnEZXOFgYN4yCSVitRcV"
Amount
x <= 100000000
100
Purpose
"I need money"
Successful Response
Schema to serialize the transaction withdrawal response.
Show child attributes