Idp authorization code callback
GET/v1/auth/org/:org/oidc/callback
Returns the Authorization token for the palette. This is called by the IDP as a callback url after IDP authenticates the user with its server.
Request
Path Parameters
org stringrequired
Organization name
Query Parameters
code string
Describes temporary and very short lived code sent by IDP to validate the token
state string
Describes a state to validate and associate request and response
error string
Describes a error code in case the IDP is not able to validate and authenticates the user
error_description string
Describes a error in case the IDP is not able to validate and authenticates the user
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Authorizationstring
Describes the authentication token in jwt format.
isMfaboolean
Indicates the authentication flow using MFA
{
"Authorization": "string",
"isMfa": true
}
Loading...