Skip to main content
POST
/
v1
/
tech
/
product
/
payouts
/
pay
Initiate Payout (Tech / Server-to-Server)
curl --request POST \
  --url https://app.unpay.in/api/v1/tech/product/payouts/pay \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "body": "UNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAY"
}
'
{
  "success": true,
  "transaction_id": "TXN20260413001",
  "status": "PENDING",
  "message": "Payout initiated successfully"
}

Authorizations

x-api-key
string
header
required

Use your API Key from the UnPay dashboard. Required for all tech/server-to-server endpoints.

Headers

Content-Type
string
default:application/json
required

Must be application/json

Body

application/json
body
string
required

AES-256-CBC encrypted payout payload (HEX encoded). Encrypt either Option A or Option B plaintext JSON — see description above.

Example:

"UNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAY"

Response

Payout initiated successfully

success
boolean
Example:

true

transaction_id
string
Example:

"TXN20260413001"

status
string
Example:

"PENDING"

message
string
Example:

"Payout initiated successfully"