Update Verification Status

Use this API to update a user's verification status. You can change the status to one of the following values:

  • deleted
  • rejected
  • reviewNeeded
  • verified

Example Request

The following example updates a user's verification to rejected:

curl --location --request PUT 'https://api.getmati.com/v2/verifications/{verificationId}/status' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "rejected"
	}'
Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!