GET
/
frontend
/
api
/
v1
/
user
curl --request GET \
  --url https://{host}/frontend/api/v1/user \
  --header 'Authorization: Bearer <token>'
{
  "filter": {},
  "pagination": {
    "count": 0,
    "limit": 10,
    "page": 1,
    "total": 0
  },
  "sort": {
    "field": "id",
    "order": "asc"
  },
  "users": [
    {
      "email": "theUser@probe.dev",
      "id": 1,
      "role": "root",
      "status": "anonymous",
      "username": "theUser"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key Security (Header).

Query Parameters

status
enum<string>[]
pagination
object
sort
object

Response

200
application/json

OK

The response is of type object.