Skip to main content
POST
/
reg_wallet_address
Register Wallet Address
curl --request POST \
  --url https://api.linkio.world/transactions/v2/reg_wallet_address \
  --header 'Content-Type: application/json' \
  --header 'ngnc-sec-key: <api-key>' \
  --data '
{
  "network": "POLYGON",
  "user_wallet_address": "<string>",
  "user_name": "<string>"
}
'
"{\n  \"status\": \"Success\",\n  \"message\": \"User's wallet address registered\",\n  \"wallet_id\": \"abc123def456\"    // Unique identifier for the new wallet\n}"

Authorizations

ngnc-sec-key
string
header
default:""
required

Body

application/json
network
string
default:POLYGON
required

Blockchain network (must be "POLYGON").

user_wallet_address
string
required

On-chain address (Polygon) where the customer will receive/send funds.

user_name
string
required

Friendly alias for the customer (e.g. “Johnwick”).

Response

200 - application/json