Get wallets by user id
GET/v1/users/wallets
Get wallets by user id
This endpoint retrieves wallets associated with a specific user ID, including both owned wallets and those shared with the user. It supports pagination and filtering by creation dates. The response includes details such as wallet ID, owner ID, name, type, backup key, seed, and creation timestamp.
Request
Query Parameters
page int32
Page
page_size int32
Page size
end_date date-time
End date
start_date date-time
Start date
Responses
- 200
- 404
- 500
Wallets found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
apiKeyId uuidnullable
backupKey stringrequired
createdAt date-timerequired
id uuidrequired
name stringrequired
ownerId uuidrequired
seed stringrequired
walletType stringrequired
[
{
"apiKeyId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"backupKey": "string",
"createdAt": "2024-09-25T19:42:12.589Z",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"ownerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"seed": "string",
"walletType": "string"
}
]
User not found
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...