AuthorizationRequest

AuthorizationRequest
AuthorizationRequest
JSON Example
{
    "grant_type": "string",
    "refresh_token": "string",
    "code": "string",
    "state": "string",
    "redirect_uri": "string",
    "client_id": "string",
    "client_secret": "string",
    "scope": "string",
    "orgId": "string"
}
string
grant_type
Required

The type of authorization to be performed.

string
refresh_token
Optional

The refresh token when grant_type is set to refresh_token

string
code
Optional

The authorization code when grant_type is set to authorization_code

string
state
Required

A transparent state of the request.

string
redirect_uri
Optional

The URI to which a redirect will be performed upon successful authorization.

string
client_id
Optional

The client ID when grant_type is set to client_credentials. Will be ignored if the Authorization header is set.

string
client_secret
Optional

The client secret when grant_type is set to client_credentials. Will be ignored if the Authorization header is set.

string
scope
Optional

Currently not supported. Present for CSP compatibility.

string
orgId
Optional

When grant_type is set to client_credentials if this parameter is set the issued token will be limited to the specified organization.