Get contacts by wallet id
GET/v1/wallets/:wallet_id/contacts
Get contacts by wallet id
This endpoint retrieves contacts associated with a specific wallet ID. It supports filtering by various parameters such as search term, ordering, sorting, pagination, and date range. The response includes detailed contact information including addresses.
Request
Path Parameters
wallet_id uuidrequired
Wallet id
Query Parameters
search_by string
Search by
order_by string
Order by
sort_by string
Sort by
page int32
Page
page_size int32
Page size
end_date date-time
End date
start_date date-time
Start date
Responses
- 200
- 404
- 500
Contacts found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- 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.666Z",
"email": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"walletId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
Wallet not found
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...