Authentication
Connections
Data Masking Rules
AWS
Guard Rails
Server Management
Jira
Organization Management
Plugins
Reports
User Management
Sessions
Session
Authentication
SAML | Login Callback
It redirects the user to the redirect URL with a JWT access token on success. A success authentication will redirect the user back to the default redirect url provided in the /saml/login route. In case of error it will include the query string error=<description> when redirecting.
POST
/
saml
/
callback
SAML | Login Callback
Copy
Ask AI
curl --request POST \
--url https://use.hoop.dev/api/saml/callback \
--header 'Content-Type: */*' \
--data '{
"SAMLResponse": "<string>"
}'
Copy
Ask AI
{
"login_url": "<string>"
}
Body
*/*
Response
200
application/json
OK
The response is of type object
.
SAML | Login Callback
Copy
Ask AI
curl --request POST \
--url https://use.hoop.dev/api/saml/callback \
--header 'Content-Type: */*' \
--data '{
"SAMLResponse": "<string>"
}'
Copy
Ask AI
{
"login_url": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.