cURL
curl --request POST \ --url https://api.example.com/api/v1/processors/:id/transfer \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data ' { "account_id": "<string>", "amount": "<string>", "description": "<string>" } '
Transfer funds from processor to subscriber
POST /api/v1/processors/:id/transfer
{ "success": true, "transaction_id": "txn_abc123", "message": "Transfer completed successfully" }