POST
/
wallets
/
{wallet_id}
/
contacts
curl --request POST \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tag": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

wallet_id
string
required

The Wallet ID.

Body

application/json
The details required to add a contact.
tag
string
required

Unique tag of the wallet.

Response

200
application/json
Successfully created wallet contact.
success
boolean
default:true

Indicates if the request was successful.

data
object