POST
/v1/auth/oauth/native/start

Authorization

Descope Project ID
AuthorizationBearer <token>

Project ID as bearer token.

In: header

Request Body

application/json

provider?string
loginOptions?object
implicit?boolean
rawResponse?boolean

Starts a full OAuth flow using native APIs

curl -X POST "https://api.descope.com/v1/auth/oauth/native/start" \  -H "Content-Type: application/json" \  -d '{}'
{  "clientId": "string",  "stateId": "string",  "nonce": "string",  "implicit": true,  "errorId": "string"}
export interface Response {clientId?: stringstateId?: stringnonce?: stringimplicit?: booleanerrorId?: string}
Was this helpful?