Get contact
GET/v1/contacts/:contact_id
Get contact
This endpoint retrieves a contact by its ID, including associated addresses. It accepts a UUID as the contact_id parameter and returns a JSON object containing the contact details if found.
Request
Path Parameters
contact_id uuidrequired
Contact id to get
Responses
- 200
- 404
- 500
Contact
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
addresses object[]required
address stringrequired
id uuidrequired
name stringrequired
networkId int32required
createdAt date-timerequired
email stringnullable
id uuidrequired
name stringrequired
walletId uuidrequired
{
"addresses": [
{
"address": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"networkId": 0
}
],
"createdAt": "2024-09-25T19:42:12.427Z",
"email": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"walletId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
Contact not found
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...