Start Verification

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.

The following is an example request with metadata:

curl --location --request POST 'https://api.getmati.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"
        }
    }'
Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!