API Reference
Frontend API
- Configs
- Users
- Auth
- POSTInitialize Authentication Process
- GETGet Authentication Process
- POSTComplete Authentication Process
- POSTReset Authentication Process
- POSTInitialize Signup
- POSTInitialize Login
- POSTSkip Authentication Block
- POSTStart Passkey Append
- POSTFinish Passkey Append
- POSTStart Passkey Login
- POSTFinish Passkey Login
- POSTFinish Passkey Mediation
- POSTStart Identifier Verification
- POSTFinish Identifier Verification
- GETGet Identifier Verification Status
- POSTUpdate Identifier
- POSTStart Social Verification
- GETSocial Verification Callback
- POSTFinish Social Verification
- POSTCreate Authentication Event
- POST
- CorbadoConnect
Backend API
- Users
- Challenges
- Identifiers
- AuthEvents
- PasskeyEvents
- PasskeyChallenges
- PasswordManagers
- ClientEnvs
- ProjectConfig
- ConnectTokens
- WebhookEndpoints
- Sessions
- Passkeys
Auth
Complete Authentication Process
Completes the current authentication process
POST
/
v2
/
auth
/
process
/
complete
Copy
curl --request POST \
--url https://{projectId}.frontendapi.corbado.io/v2/auth/process/complete \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
tbd
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://{projectId}.frontendapi.corbado.io/v2/auth/process/complete \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
Assistant
Responses are generated using AI and may contain mistakes.