CorbadoConnect
Initialize Connect Management
Initializes a connect process for passkey management
POST
/
v2
/
connect
/
manage
/
init
Copy
curl --request POST \
--url https://{projectId}.frontendapi.corbado.io/v2/connect/manage/init \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"clientInformation": {
"bluetoothAvailable": true,
"clientEnvHandle": "<string>",
"visitorId": "<string>",
"canUsePasskeys": true,
"isUserVerifyingPlatformAuthenticatorAvailable": true,
"isConditionalMediationAvailable": true,
"clientCapabilities": {
"conditionalCreate": true,
"conditionalMediation": true,
"hybridTransport": true,
"passkeyPlatformAuthenticator": true,
"userVerifyingPlatformAuthenticator": true
},
"javaScriptHighEntropy": {
"platform": "<string>",
"platformVersion": "<string>",
"mobile": true
},
"isNative": true,
"webdriver": true,
"privateMode": true,
"clientEnvHandleMeta": {
"ts": 123,
"source": "ls"
}
},
"flags": {},
"invitationToken": "<string>"
}'
Copy
{
"processID": "<string>",
"newClientEnvHandle": "<string>",
"expiresAt": 123,
"frontendApiUrl": "<string>",
"manageAllowed": true,
"flags": {}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
Contains information about if and how passkey management can be started.
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://{projectId}.frontendapi.corbado.io/v2/connect/manage/init \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"clientInformation": {
"bluetoothAvailable": true,
"clientEnvHandle": "<string>",
"visitorId": "<string>",
"canUsePasskeys": true,
"isUserVerifyingPlatformAuthenticatorAvailable": true,
"isConditionalMediationAvailable": true,
"clientCapabilities": {
"conditionalCreate": true,
"conditionalMediation": true,
"hybridTransport": true,
"passkeyPlatformAuthenticator": true,
"userVerifyingPlatformAuthenticator": true
},
"javaScriptHighEntropy": {
"platform": "<string>",
"platformVersion": "<string>",
"mobile": true
},
"isNative": true,
"webdriver": true,
"privateMode": true,
"clientEnvHandleMeta": {
"ts": 123,
"source": "ls"
}
},
"flags": {},
"invitationToken": "<string>"
}'
Copy
{
"processID": "<string>",
"newClientEnvHandle": "<string>",
"expiresAt": 123,
"frontendApiUrl": "<string>",
"manageAllowed": true,
"flags": {}
}
Assistant
Responses are generated using AI and may contain mistakes.