Skip to main content
POST
/
wallet
/
add
cURL
curl --request POST \
  --url https://sandbox.zylo.digital/cms/api/v1/wallet/add \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-SIGNATURE: <api-key>' \
  --header 'X-TIMESTAMP: <api-key>' \
  --data '
{
  "customer_id": "c2cf861b-342b-4318-a90e-85cd0312e82f",
  "wallet_address": "0x1234567890123456789012345678901234567890"
}
'
{
  "status": true,
  "message": "Success",
  "data": {
    "id": "4e6f1b20-a73c-11ec-b909-0242ac120002",
    "customer_id": "550e8400-e29b-41d4-a716-446655440000",
    "wallet_address": "0x1234567890123456789012345678901234567890",
    "wallet_status": "ACTIVE",
    "failure_reason": "null"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dollarpe.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

API Key for authentication

X-TIMESTAMP
string
header
required

Current timestamp in seconds since epoch

X-SIGNATURE
string
header
required

HMAC SHA256 signature of the request encoded in Base64

Body

application/json
customer_id
string<uuid>
required

Customer's unique identifier

Example:

"c2cf861b-342b-4318-a90e-85cd0312e82f"

wallet_address
string
required

Wallet address

Example:

"0x1234567890123456789012345678901234567890"

Response

Wallet added successfully

status
boolean
Example:

true

message
string
Example:

"Success"

data
object