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
Auth
Get list of active sessions
GET
/
frontend
/
api
/
v1
/
auth
/
session
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/auth/session \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"sessions": [
{
"created": "2023-11-07T05:31:56Z",
"expire": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"remote-ip": "<string>",
"ua-type": "<string>",
"user-agent": "<string>"
}
]
}
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/auth/session \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"sessions": [
{
"created": "2023-11-07T05:31:56Z",
"expire": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"remote-ip": "<string>",
"ua-type": "<string>",
"user-agent": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.