POST
/api/passkey/confirmAdvanced helper endpoint used to confirm a Passkey linking request. Most API integrations should use the Device Link Helper manual token flow instead.
Confirm Passkey Link
This endpoint is part of the advanced Passkey helper flow.
Recommended API flow: Most API integrations should not call this endpoint directly. Use Device Link Helper instead: show the temporary Passkey token to the user, and the extension will handle confirmation automatically after the user approves the Passkey prompt.
If you are building your own helper, call this endpoint after submitting the Passkey response and after the pending request reports that confirmation is available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| token | string | Yes | Temporary Passkey token. |
| requestId | string | Yes | Pending Passkey request ID. |
Code Examples
curl -X POST "https://www.wasenderapi.com/api/passkey/confirm"
-H "Content-Type: application/json"
-d '{
"token": "TEMPORARY_PASSKEY_TOKEN",
"requestId": "passkey-request-id"
}'Response Examples
{
"success": true,
"status": "confirmed"
}