POST
/
v1
/
passkey_assertions
/
{id}
/
verify
curl --request POST \
  --url https://api.contribyard.com/v1/passkey_assertions/{id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "assertion": {
    "type": "<string>",
    "id": "<string>",
    "rawId": "<string>",
    "authenticatorAttachment": "<string>",
    "response": {
      "clientDataJSON": "<string>"
    }
  }
}'
{
  "response": {
    "verified": true,
    "idtoken": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Passkey Assertion ID

Body

application/json
assertion
object
required

Response

200 - application/json
passkey assertion verified
response
object