Skip to main content

Pay-Out · India

TOPPAY TeamAbout 2 min

Request

The Pay-Out API initiates disbursement transactions. This page is for India (country code in). bankCode values are in Regional Payment Guide — India (Disbursement bank list).

Request URL

Domain: Prefer unified host openapi.toppayment.com (path unchanged); legacy country domain (e.g. global-in-openapi.toppayment.com) remains available.

EnvironmentURL
Sandboxhttps://openapi.toppayment.com/sandbox/in/disbursement/cash
Productionhttps://openapi.toppayment.com/in/disbursement/cash

Request Header

FieldRequiredTypeDescription
Content-TypeMStringapplication/json

Request Body

FieldRequiredTypeDescription
mchNoMString(32)Merchant number
orderNumMString(50)Merchant order number
amountMNumber(32,8)Amount
bankCodeMString(32)Bank code (India) — Regional Payment Guide — India
bankCardMString(50)Account number
accountNameMString(50)Account name
descriptionOString(255)Description
feeTypeMNumberFee type
0: Deduction within the order
1: Handling fee is calculated separately
downNotifyUrlMString(164)Callback URL
timestampMStringTimestamp (13 digits)
signMStringSee Signature

Request Body Example (illustrative — HDFC is HDFC Bank; use live codes from the guide)

Content-type: application/json

Response

FieldDescription
data.bankCodeBank code (India) — Regional Payment Guide — India
data.statusNumeric — Transaction Status Codes

Example response

{
    "success": true,
    "code": "9999",
    "timeStamp": 1767772957433,
    "data": {
        "orderNum": "INPAYOUT12345617",
        "platOrderNum": "TRANS2008811496544403456",
        "amount": 1000,
        "fee": 20,
        "feeType": 1,
        "status": 1,
        "statusMsg": "ORDER_RECEIVED_PROCESSING",
        "bankCode": "HDFC",
        "bankCard": "50100123456789",
        "accountName": "Rajesh Kumar",
        "description": "test"
    }
}

Notification

HTTP Request

FieldRequiredTypeDescription
Content-TypeMStringHTTP request content type
Fixed value: application/json
Indicates JSON request format

Notification Body

FieldRequiredTypeDescription
platOrderNumMStringPlatform order number
System-generated internal transaction reference
Used for internal transaction management and support
versionMStringVersion
API version identifier
Example: v1
orderNumMStringMerchant order number
Same as orderNum in the original request
Used for transaction identification and verification
amountMNumberTransaction amount
Confirmed transaction amount
feeMNumberFee
Fee charged for the transaction
feeTypeMNumberFee type
1: Merchant bears the fee
statusMNumberTransaction status
See Transaction Status Codes
statusMsgMStringStatus message
Human-readable order status description
bankCodeMStringBank code (India)
See Regional Payment Guide — India
bankCardMStringBank card number/account number
accountNameMStringAccount name
descriptionOStringDescription
signMStringSignature
Digital signature of callback data

Response

Important response

Notification response: Return only the string SUCCESS to acknowledge receipt of the notification

{
    "platOrderNum": "TRANS2008812168572567552",
    "version": "v1",
    "orderNum": "INPAYOUT12345648",
    "amount": 1110,
    "fee": 30,
    "feeType": 1,
    "status": 2,
    "statusMsg": "supplement success!",
    "bankCode": "HDFC",
    "bankCard": "50100123456789",
    "accountName": "Rajesh Kumar",
    "description": "test",
    "sign": "KCitZCmhtuoGtVOl/EC4Mn1vwf3QRkoL9Ged0psKiCzATvP0AePNc8P1PEcWrbJYAPctewCRO9jW+vHjtXrh6ozk2OUvVDUlLTiM3PS7ydpeogy+W6w3b4OZDg5vUtaTVwz5mpEKBZv/XEhOes1C16+ec36PLp3Mi0Y0g4ivgwk="
}