Skip to main content
GET
/
oauth
/
authorize
Validate authorization request
curl --request GET \
  --url https://public-api.sessionboard.com/oauth/authorize
{
  "authorization_request": {
    "client_id": "<string>",
    "client_name": "<string>",
    "redirect_uri": "<string>",
    "scopes": [
      "<string>"
    ]
  }
}

Query Parameters

client_id
string
required
redirect_uri
string
required
response_type
enum<string>
required
Available options:
code
code_challenge
string
required
code_challenge_method
enum<string>
required
Available options:
S256
scope
string

Space-separated scopes

state
string

Response

Authorization request validated

authorization_request
object