v1
latestOpenAPI 3.0.12026-07-2679100267.2 KBInitiate and authorize a cross-border transfer. Manages the complete transfer lifecycle from initiation to final authorization. Supports BANK, MobileMoney, INTERAC, FASTER_PAYMENTS, SEPA, ACH, and WIRE payment methods.
post/v1/global-payout/transfer/authorize
Headers
Authorizationstring required
Example:Bearer <token>
Bearer token for authentication.
accountIdstring required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27
The parent accountId of the business.
Request body
Example request
{
"amount": 500,
"sourceCurrency": "USD",
"destinationCurrency": "USD",
"receiverName": "John Cena",
"sourceCountryIsoCode": "CD",
"destinationCountryIsoCode": "CD",
"paymentMethod": "MobileMoney",
"accountNumber": "0903086112",
"institutionCode": "access_bank",
"institutionName": "Mpesa",
"accountType": "INDIVIDUAL",
"bankAccountType": "CHECKING",
"purposeOfPayment": "FAMILY_SUPPORT",
"narration": "Family support",
"lockedExchangeRateId": "01k7pcakf0t8g03rvny3z5mr1p",
"bankAddress": "383 Madison Avenue",
"bankCity": "New York",
"bankState": "NY",
"bankZipCode": "10017",
"beneficiary": {
"beneficiaryEmail": "jane.doe@email.com",
"securityQuestion": "What is your pets name?",
"securityQuestionAnswer": "Fluffy",
"beneficiaryAddress": "123 Main Street",
"beneficiaryCity": "New York",
"beneficiaryState": "NY",
"beneficiaryPostCode": "10001"
}
}Response
Transfer authorized successfully.
Example response
{
"code": "00",
"description": "Successful",
"data": {
"wtTransactionId": "01kky197w3xc6wyjenpc5r0tnp",
"coreTransactionId": "API-FX_TX_DR-08A1B-6add611a-e538-4e67-bcf9-661c77a16804",
"status": "PROCESSING",
"coreStatus": "PAYMENT_SUCCESSFUL",
"type": "TRANSFER",
"prettyStatus": "Successful",
"meta": {
"source_amount": "250.0",
"destination_amount": "250.0",
"source_currency": "USD",
"destination_currency": "USD",
"amount_charged": "255.0",
"currency_pair_name": "USD/USD",
"payment_method": "MobileMoney",
"destination_country": "CD",
"destination_country_name": "Congo DR",
"source_country": "CD",
"narration": "Family support",
"trade_side": "BUY",
"spread_amount": "0.0",
"spread_currency": "USD",
"wt_transaction_id": "01kky197w3xc6wyjenpc5r0tnp",
"trade_context": "default",
"transactionCategory": "General",
"payment_destination_type": "Account",
"tradeType": "FIXED_TRADE"
}
}
}