post https://api.prod.metamap.com/v2/verifications/
Use this endpoint to create a new user verification or reverify an existing user.
Use this API to specify your metamap for your verifications.
The request body can also include metadata so you can use your own internal references to identify your users and requests. Send metadata for every webhook. The metadata should have a maximum size of ≦4Kb and be only one level deep.
Example Request
The following is an example request with metadata:
curl --location --request POST 'https://api.prod.metamap.com/v2/verifications' \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer <YOUR_METAMAP_ACCESS_TOKEN>" \
-d '{
"flowId": "<YOUR_METAMAP_FLOW_ID>",
"metadata": {
"user": "JOHN DOE",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
}'