Login and Authentication
auth not required
Log In
POST /api/v1/{service}/jwtBody
Type
Description
Example
POST /api/v1/identity/jwt// Request body
{
"user": "[email protected]",
"password": "password"
}Last updated

auth not required
POST /api/v1/{service}/jwtPOST /api/v1/identity/jwt// Request body
{
"user": "[email protected]",
"password": "password"
}Last updated
{
"user": "userId",
"email": "[email protected]",
"token": "superSecretToken",
"name": "Example Name",
"status": "ok",
"httpStatusCode": 200
}// Error Response body
{
"status": 401,
"error": "Unauthorized"
}// Error Response body
{
"status": 403,
"error": "Forbidden"
}// header
Authorization: Bearer <superSecretToken>