put https://api.prod.metamap.com/v2/verifications//status
Use this API to update a user's verification status. You can change the status to one of the following values:
rejected
reviewNeeded
verified
Example Request
The following example updates a user's verification to rejected
:
curl --location --request PUT 'https://api.prod.metamap.com/v2/verifications/{verificationId}/status' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"status": "rejected"
}'