Skip to main content

2. Accept Transaction

Once you have a valid quote_id and the user has confirmed the details, you create the transaction. This step registers the user's payment details and prepares Abroad to receive the funds.

Endpoint

POST /transaction

Request

You must provide the quote_id, the user's identification (user_id), and their payout details. Provide bank_code only when a specific rail or bank identifier is required.

{
"quote_id": "uuid-from-previous-step",
"user_id": "your-internal-user-id",
"account_number": "3001234567",
"bank_code": "9101",
"tax_id": "123456789"
}

Parameters

ParameterTypeRequiredDescription
quote_idstringYesThe ID of the quote to execute.
user_idstringYesYour internal user ID for compliance tracking.
account_numberstringYesThe recipient's bank account or mobile wallet number.
bank_codestringNoOptional bank or rail identifier; include it only if the payout rail requires it.
tax_idstringNoThe user's tax ID (NIT/CPF) if required.
redirectUrlstringNoOptional redirect URL after KYC.
qr_codestringNoQR code string, when applicable.

Response

The most critical part of the response is the transaction_reference. This is the unique identifier (Memo) that MUST be included in the on-chain transfer.

{
"id": "f4a96c4c-4d1e-4ab2-a6ec-2e1b5070c5db",
"transaction_reference": "9KlsTE0eSrKm7C4bUHDF2w==",
"kycLink": null
}

KYC/KYB Checks

If the user or partner requires KYC/KYB verification, the kycLink field will contain a URL.

Action Required

You MUST redirect the user to this URL to complete their identity verification. The transaction will not be processed until KYC is approved.

Troubleshooting

"We could not verify the account number and bank code provided. Please double-check the details and try again."

Abroad could not validate the provided payout details. Confirm the account_number and resend the request.

"We could not find a valid quote for this request. Please generate a new quote and try again."

The supplied quote_id is missing or no longer valid (likely expired). Create a fresh quote and retry the transaction.