Skip to main content
POST
/
v3
/
confirmations
/
{token}
/
lock
Lock a confirmation
curl --request POST \
  --url https://api.example.com/v3/confirmations/{token}/lock \
  --header 'Authorization: Bearer <token>'
{
  "locked": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

token
string
required

The vyt confirmation token the user returned with after verifying.

Response

Successful Response

locked
boolean
required

True once the confirmation is locked. A locked confirmation can't be confirmed again — GET /v3/confirmations/{token} then returns verified: false.