Auth
- GETList API Tokens
- POSTCreate API Token
- GETGet API Token
- PUTRefresh API Token or set Token TTL and change permissions
- DELDelete API Token
- PUTUpdate current user password
- POSTGenerate new JWT Token
- POSTAuthenticate user by oauth provider token
- GETGet list of active sessions
- DELDelete all active sessions
- GETGet list of 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
Delete API Token
DELETE
/
frontend
/
api
/
v1
/
auth
/
api-token
/
{token}
Copy
Ask AI
curl --request DELETE \
--url https://{host}/frontend/api/v1/auth/api-token/{token} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
This response does not have an example.
Authorizations
API Key Security (Header).
Path Parameters
API Token
Response
204
No Content
Copy
Ask AI
curl --request DELETE \
--url https://{host}/frontend/api/v1/auth/api-token/{token} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.