API Reference/Third Party Apps
POST
/oauth2/v1/apps/authorize

Request Body

application/jsonRequired
response_typestring
scopestring
client_idstring
statestring
redirect_uristring
code_challenge_methodstring

PKCE

code_challengestring
noncestring
loginHintstring
promptstring
flowstring
curl -X POST "https://api.descope.com/oauth2/v1/apps/authorize" \
  -H "Content-Type: application/json" \
  -d '{
    "response_type": "string",
    "scope": "string",
    "client_id": "string",
    "state": "string",
    "redirect_uri": "string",
    "code_challenge_method": "string",
    "code_challenge": "string",
    "nonce": "string",
    "loginHint": "string",
    "prompt": "string",
    "flow": "string"
  }'

OK

{}

Was this helpful?