Skip to content

Create Payout

WARNING

Note: if the response times out or returns a non-200 HTTP status code, confirm the order status with operations before resubmitting

WARNING

Important: name + phone + email + amount are used to identify distinct customers. Follow these notes to avoid incorrect risk-control decisions.

  1. Do not hard-code name, phone, and email together
  2. Use the same name + phone + email for the same customer

Endpoint

POST /cashout/pakistan/order/create

Request Parameters

FieldTypeRequiredDescription
namestringYesCustomer name — More realistic values improve success rate and reduce risk flags; length must be greater than 5
phonestringYesCustomer mobile number — 11 digits starting with 03; phone and account must be the same
emailstringYesCustomer email — More realistic values improve success rate and reduce risk-control flags
bankCodestring enumYesPayout method code — JAZZCASH, EASYPAISA
accountstringYesAccount number (Pakistan supports mobile numbers) — 11 digits starting with 03; phone and account must be the same
amountnumberYesAmount — 100~49999; up to 2 decimal places (rounded). Trailing zeros after the decimal are omitted in the pre-sign string for float amounts
notifyUrlstringYesNotification URL — Sandbox supports automatic callbacks: odd last digit of phone → success; even → failure
signstringYesSignature
appIdstringYesMerchant appId
mchOrderNostringYesMerchant order number
mchIdintegerYesMerchant ID
txChannelstringYesTransaction channel — Fixed valueTX_PAK_001
timestampintegerYesCurrent timestamp — Unix timestamp in seconds
taxNumberstringYesID number (CNIC) — Length: 13 digits
branchstringYesInternational bank account — IBAN must start with PK and contain 24 characters

Request Example

json
{
 "mchId": 7937213261,
 "txChannel": "TX_PAK_001",
 "appId": "R22e9c0f1x3hycRKd9",
 "timestamp": 1662450012,
 "mchOrderNo": "payout_26622128134",
 "name": "Matthew Clark",
 "phone": "03881999382",
 "email": "test@gmail.com",
 "bankCode": "UPAY",
 "account": "03881999382",
 "amount": "500",
 "taxNumber": "3123456789012",
 "branch": "PK36SCBL0000001123456702",
 "notifyUrl": "http://xmevj.kg/obp",
 "sign": "xxxxxxxx"
}

Response Parameters

FieldTypeRequiredDescription
statusintegerYesStatus — 200 success
msgstringYesMessage
dataobjectYes
data.applyTimeintegerYesApplication time
data.amountnumberYesCredited amount
data.platOrderNostringYesPlatform order number
data.mchOrderNostringYesMerchant order number
data.orderStatusstring enumYesOrder status — PENDING, SUCCESS, FAILED, REFUND

Response Example

json
{
 "status": 200,
 "msg": null,
 "data": {
 "mchOrderNo": "payout_1662104438",
 "platOrderNo": "wussXUCOoXO3yptr7rQV",
 "applyTime": 1662104742,
 "amount": 180.34,
 "orderStatus": "PENDING"
 }
}

Transafe Developer Documentation