Create Single Payout

Use this API to create a single payout.

Create a Single Payout.

POST /api/v1/payout/create-single

Headers

Name
Type
Description

x-api-key*

String

Terminal API Key

x-nonce*

String

Timestamp in millisecond

x-signature*

String

Signature created using your API secret

Content-Type*

String

application/json

Request Body

Name
Type
Description

address*

String

Payout address

Example:2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t

amount*

String

Payout amount

Example:0.00025

asset*

String

Payout asset

Example:BTC

personal_address*

String

Payout creator address

Example:1/444

personal_city*

String

Payout creator city

Example:muang

personal_country*

String

Payout creator country

Example:th

personal_fname*

String

Payout creator firstname

Example:Chaisit

personal_lname*

String

Payout creator lastname

Example:Kitnuam

personal_postcode*

String

Payout creator postcode

Example:83000

personal_state*

String

Payout creator state

Example:Phuket

postback_url

String

URL we will send notify the payout status (Optional)

Example:http://www.merchant.com/postback-url

{
  "status": "ok",
  "message": "Create payout success",
  "payout_code": "BHtSub8Qf",
  "amount": "0.00025",
  "asset": "BTC",
  "to_address": "2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t",
  "fee": "0.0000125"
}

Last updated