Reject Pending Biometric Verification

How to reject a pending biometric verification via API

To reject a biometric verification through the API, use the following mutation:

mutation{
  rejectBiometric(
    verification_id: VERIFICATION_ID,
    public_id:  "SIGNATURE_ID"
  ){
    public_id
    name
    email
    delivery_method
    user{
      id
      name
      email
      phone
    }
    verifications{
      id
      type
      verify_phone
      payload {
        url
        reference
      }
      user {
        images
        confidence
      }
      verified_at
      max_attempt
      logs_attempt
    }
  }
}

Parameter

  • verification_id: The ID of the additional verification to be rejected

  • public_id: The ID of the signature that contains the verification

Expected response:

If Altair doesn't help you integrate with the API, check out some examples of how to make these requests in other ways: https://graphql.org/graphql-js/graphql-clients/

Last updated

Was this helpful?