POST
/v1/auth/webauthn/signup-in/start

Authorization

Descope Project ID
AuthorizationBearer <token>

Project ID as bearer token.

In: header

Request Body

application/json

loginId?string
origin?string
loginOptions?object
ssoAppId?string
passkeyOptions?object

Use to login with WebAuthn, if user doesn't exist a new user will be created

curl -X POST "https://api.descope.com/v1/auth/webauthn/signup-in/start" \  -H "Content-Type: application/json" \  -d '{}'
{  "transactionId": "string",  "options": "string",  "create": true}
export interface Response {transactionId?: stringoptions?: stringcreate?: boolean}
Was this helpful?