Get users
GET/v1/admin/users
Get users
This endpoint retrieves a paginated list of user information accessible through the admin panel. It allows filtering by creation dates and supports basic search functionality. Access is restricted to admin users only.
Request
Query Parameters
page int32
Page
page_size int32
Page size
search string
Search
end_date date-time
End date
start_date date-time
Start date
Responses
- 200
- 400
- 403
- 500
Users retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
accounts string[]required
email stringrequired
last_login date-timenullable
last_transaction date-timenullable
nickname stringrequired
[
{
"accounts": [
"string"
],
"email": "string",
"last_login": "2024-09-25T19:42:12.299Z",
"last_transaction": "2024-09-25T19:42:12.299Z",
"nickname": "string"
}
]
Invalid page or page_size value
- text/plain
- Schema
Schema
string
User is not admin
- text/plain
- Schema
Schema
string
Unexpected error
- text/plain
- Schema
Schema
string
Loading...