POST
/
v1
/
passkey_attestations
/
{id}
/
verify
curl --request POST \
  --url https://api.contribyard.com/v1/passkey_attestations/{id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "attestation": {}
}'
{
  "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 Attestation ID

Body

application/json
attestation
object
required

Response

201 - application/json
response
object