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
Verify Sign-up email
POST
/
frontend
/
api
/
v1
/
auth
/
verify
Copy
Ask AI
curl --request POST \
--url https://{host}/frontend/api/v1/auth/verify \
--header 'Content-Type: application/json' \
--header 'X-Recaptcha-Token: <x-recaptcha-token>' \
--data '{
"verify-token": "<string>"
}'
Copy
Ask AI
{
"email": "<string>",
"status": "anonymous",
"success": true
}
Headers
Minimum length:
6
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://{host}/frontend/api/v1/auth/verify \
--header 'Content-Type: application/json' \
--header 'X-Recaptcha-Token: <x-recaptcha-token>' \
--data '{
"verify-token": "<string>"
}'
Copy
Ask AI
{
"email": "<string>",
"status": "anonymous",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.