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"
}
]
}
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"
}
]
}
API Key Security (Header).
OK
The response is of type object
.