Wallet addition

TIP

Add the wallet in monitor mode.

Interface address

POST https://api.tokenpay.me/v1/wallet/insert

Interface parameters

Name
Location
Type
Required
Description

app_id

header

string

Yes

Application ID, example value: 8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd.

mch_id

body

string

Yes

Merchant ID, example value: 1234567890.

name

body

string

No

Wallet note. In monitor wallet mode, it can be used to identify one user one wallet unique information, such as user ID.

wallet_address

body

string

Yes

Wallet address, example value: TQjxEW2Z3pxxxxxxxxxxxxgJUrWXVAC92T.

chain

body

string

Yes

Owned public chain, example value:TRONETHEREUMBSC. View supported public chains.

Parameters example

{
  "mch_id": "1234567890",
  "app_id": "8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd",
  "wallet_address": "TQjxEW2Z3pxxxxxxxxxxxxgJUrWXVAC92T",
  "chain": "TRON",
  "name": "28713"
}

Interface return

Name
Type
Required
Description

code

integer

true

msg

string

true

Statements

request_id

string

true

data

false

Return example

{
    "code": 0,
    "msg": "ok",
    "request_id": "60eeeab2-7896-4f80-8088-4251d262dea6",
    "data": {
        "app_id": "8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd",
        "mch_id": "1234567890",
        "name": "28713",
        "chain": "TRON",
        "wallet_address": "TQjxEW2Z3pxxxxxxxxxxxxgJUrWXVAC92T",
        "create_time": 1675236993,
        "last_time": 0
    }
}

Example code

curl --location --request POST 'https://api.tokenpay.me/v1/wallet/insert' \
--header 'Authorization: <Authorization>' \
--header 'User-Agent: tokenpay API (https://tokenpay.me)' \
--header 'Content-Type: application/json' \
--data-raw '<body data here>'

Last updated