List all wallets
Returns a paginated list of all wallets
Query Parameters
- page number
Possible values:
>= 1
Default value:
1
Current page number of the results list
- pageSize number
Possible values:
>= 1
and<= 100
Default value:
10
Number of items per page in the results list
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- total number
Total number of items
- page number
Current page number of the results list
- pageSize number
Number of items per page in the results list
results object[]
Array containing the wallet items
id stringUnique wallet identifier.
metadata object
A dictionary style object with string keys and values. Key names up to 40 characters long. Values up to 500 characters long. Up to 50 keys.
property name*
stringstatus stringaddress stringWallet address
createdOn date-timeThe date and time when the object was created.
{
"total": 0,
"page": 0,
"pageSize": 0,
"results": [
{
"id": "string",
"metadata": {},
"status": "available",
"address": "0x0000000000000000000000000000000000000000",
"createdOn": "2023-03-02T16:02:09.821Z"
}
]
}
Loading...