Authentication
Obtaining a Token
POST /api/authentication_token
Content-Type: application/json
{
"username": "admin",
"password": "your-password"
}{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9..."
}Using the Token
GET /api/users
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...Token Lifecycle
Generating JWT Keys
API Documentation
Last updated
Was this helpful?