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
| Code | Description |
|---|---|
| 400 | Invalid amount or insufficient balance |
| 404 | Processor or account not found |
| 401 | Unauthorized |