Skip to main content
POST
/
v1
/
whitelist-address
Add whitelisted address
curl --request POST \
  --url https://staging.api.payluk.ng/v1/whitelist-address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'customer-id: <customer-id>' \
  --data '
{
  "address": "TXYZ1234567890",
  "network": "TRON",
  "label": "My Binance wallet"
}
'
{
  "status": 201,
  "message": "Address whitelisted successfully",
  "data": {
    "id": "665f1b2c9a1e4d0012ab3c60",
    "address": "TXYZ1234567890",
    "network": "TRON"
  }
}

Authorizations

Authorization
string
header
required

Your secret key as a Bearer token. The key prefix selects the environment: sk_test_... (test) or sk_live_... (live).

Headers

customer-id
string
required

The merchant customer this request acts on behalf of.

Body

application/json
address
string
required
Example:

"TXYZ1234567890"

network
string
required
Example:

"TRON"

label
string
Example:

"My Binance wallet"

Response

Address whitelisted.