sourceExternalUserId
is provided, funds move from the user to the partner; if destinationExternalUserId
is provided, funds move from the partner to the user. Direct user-to-user transfers are not supported. The request must specify the amount and currency, and at least one of the user IDs. After the request is accepted, the transfer is scheduled for processing asynchronously. Use the Get Transfer Details endpoint to track the final status and outcome, including any errors such as insufficient funds or invalid parameters.curl --location --request POST 'https://partner-api-stage.p100.io/v1/transfer' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
"destinationExternalUserId": "75a1d530-3c12-44e8-a23a-0241b9e73c87",
"amount": "1",
"currency": "doge"
}'
{
"transferId": "082768b4-c831-47fb-920b-fea0d8d51be0"
}