Auth
- PUTUpdate current user password
- POSTAuthenticate user by oauth provider token
- GETGet list of active sessions
- DELDelete all active sessions
- DELDelete active session
- POSTAuthenticate user by username(email) and password
- DELInvalidate current JWT token session or invalidate all sessions
- POSTVerify Sign-up email
- PUTUpdate sub user password
Media
Statistics
User
List users
GET
/
frontend
/
api
/
v1
/
user
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/user \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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
API Key Security (Header).
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/user \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.