Appearance
DCB Payouts
Use this page to create payouts using DCB method.
- Base URL:
https://api.paylander.com/api/v1/payout/ - Endpoint:
POST /v1/payout/
Overview
Common fields (see Payout API):
channel(UUID, required)amount(object, required)currency(ISO 4217, must beKZT)value(string, required)
external_id(string, required) → your internal order or payout IDdescription(string, optional)payout_method(object, required)
payout_method (type: dcb)
Required:
type→"dcb"phone→ Subscriber phone numberfirst_name→ Subscriber first namelast_name→ Subscriber last name
Example Request
json
{
"channel": "b96d5b92-8f34-4b12-9b16-5f047b57c901",
"amount": {
"currency": "KZT",
"value": "2500.00"
},
"payout_method": {
"type": "dcb",
"phone": "78436950671",
"first_name": "Daniyar",
"last_name": "Akhmetov"
},
"description": "Withdrawal #49283",
"external_id": "ORDER-49283",
"callback_url": "https://your-company.com/callback"
}Example Response
json
{
"status": "processing",
"transaction_id": "b5cff6ed-f3f0-46df-a390-2ffdb11430f4",
"external_id": null
}