GET
/
v2
/
auth
/
process
curl --request GET \
  --url https://{projectId}.frontendapi.corbado.io/v2/auth/process \
  --header 'Authorization: Bearer <token>'
{
  "blockBody": {
    "block": "signup-init",
    "authType": "signup",
    "data": {
      "blockType": "<string>",
      "challenge": "<string>",
      "identifierValue": "<string>",
      "identifierType": "email",
      "autoSubmit": true,
      "passkeyIconSet": "default",
      "variant": "default"
    },
    "alternatives": [
      {}
    ],
    "error": {
      "code": "<string>",
      "message": "<string>"
    },
    "continueOnOtherDevice": {
      "reason": "email-link-verified"
    }
  },
  "common": {
    "appName": "<string>",
    "frontendApiUrl": "<string>",
    "hideBadge": true,
    "environment": "<string>"
  },
  "newProcess": {
    "token": "<string>",
    "expiresAt": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

preferredBlock
enum<string>
Available options:
signup-init,
passkey-append,
phone-verify,
email-verify,
passkey-appended,
completed,
social-verify,
login-init,
passkey-verify,
conditional-ui-completed,
post-signup-email-verify,
passkey-append-after-hybrid

Response

200 - application/json

tbd

The response is of type object.