Skip to main content

Processor Transfer

POST/processors/{id}/transferOpen in the API playground →

Transfer funds from processor account to a subscriber account.

Endpoint

POST /api/v1/processors/:id/transfer

Authentication

Authorizationstringheaderrequired

Bearer token (Processor or Admin JWT)

Path Parameters

idstringpathrequired

Processor UUID

Request Body

account_idstringbodyrequired

Recipient account ID

amountstringbodyrequired

Amount to transfer (e.g., "500.00")

descriptionstringbody

Transfer description

Response

{
"success": true,
"transaction_id": "txn_abc123",
"message": "Transfer completed successfully"
}

Errors

CodeDescription
400Invalid amount or insufficient balance
404Processor or account not found
401Unauthorized