Authenticate and get a JWT access and refresh token
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"password": "complex-password",
"provider": "db",
"refresh": true,
"username": "admin"
}
Request Code Samples
curl --location '/security/login' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"password": "complex-password",
"provider": "db",
"refresh": true,
"username": "admin"
}'
Responses
Authentication Successful
{
"access_token": "string",
"refresh_token": "string"
}
Modified at 2025-06-04 22:27:17