GET
/
wallets
/
{wallet_id}
/
contacts
/
{contact_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/contacts/{contact_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "fav_123456",
    "full_name": "Jane Smith",
    "nickname": "Jane",
    "tag": "janesmith",
    "avatar": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

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.

contact_id
string
required

The Contact ID.

Response

200
application/json
Successfully retrieved wallet contact details.
success
boolean
Example:

true

data
object