Skip to main content
GET
/
api
/
auth
/
users
{
  "data": [
    {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "role": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "offset": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
limit
integer
default:10
role
enum<string>
Available options:
user,
admin

Response

List of users

data
object[]
pagination
object
I