Pular para o conteúdo principal
POST
/
api
/
v1
/
sso
/
authorize
Authorization endpoint (form POST)
curl --request POST \
  --url https://api.example.com/api/v1/sso/authorize \
  --header 'Content-Type: application/json' \
  --data '
{
  "clientId": "<string>",
  "redirectUri": "<string>",
  "scope": "<string>",
  "codeChallenge": "<string>",
  "codeChallengeMethod": "<string>",
  "state": "<string>"
}
'

Corpo

application/json
clientId
string | null
redirectUri
string | null
scope
string | null
codeChallenge
string | null
codeChallengeMethod
string | null
state
string | null

Resposta

200

OK