POST
/v1/auth/oauth/authorize/signup

Authorization

AuthorizationRequiredBearer <token>

In: header

Request Body

application/jsonRequired
stepupboolean
Default: false
customClaimsobject
mfaboolean
Default: false
ssoAppIdstring
templateOptionsobject
localestring
pkceChallengestring

relevant only for enchanted links in the point in time - other methods will ignore this field

Format: "bytes"
revokeOtherSessionsboolean

Query Parameters

providerstring
redirectUrlstring
promptarray<string>
testboolean
rawResponseboolean
curl -X POST "https://api.descope.com/v1/auth/oauth/authorize/signup?provider=%3Cstring%3E&redirectUrl=%3Cstring%3E&prompt=string&test=true&rawResponse=true" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "stepup": false,
    "customClaims": {},
    "mfa": false,
    "ssoAppId": "string",
    "templateOptions": {
      "property1": "string",
      "property2": "string"
    },
    "locale": "string",
    "pkceChallenge": "string",
    "revokeOtherSessions": true
  }'

OK

{
  "url": "string",
  "errorId": "string"
}

Was this helpful?