List users

api-docs Redoc document (api spec)

List users with pagination

get
Required scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Query parameters
pageintegerRequired

Page number

page_sizeintegerRequired

Number of items per page

Responses
200

Successful response

application/json
get
/api/user/list
200

Successful response

This endpoint allows you to list all users with pagination. To access this endpoint, you need to have either the "partner" or "admin" API key. The endpoint requires two parameters in the query, "page" and "page_size", which represent the current page number and the number of items per page, respectively. Both parameters are required and must be of type "integer".

The response from the endpoint will be in JSON format and will contain either an "error" object or a "data" object. The "error" object will have a "code" and a "message" indicating if an error occurred while processing the request. The "data" object will contain information about the users, such as their ID, email, wallet, user role, creation date, last update date, user company ID, and user company transaction ID. The "data" object will also contain a "metadata" object with information about the current page, the total number of items, and the number of items per page.

Last updated