curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/create-verification \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"template_id": "{your_trust_flow_id}"
}
'{
"message": "Verification created successfully",
"verification": {
"user_id": "{your_user_id}",
"company_id": "{your_company_id}",
"template_id": "{your_template_id}",
"status": 99,
"verification_date": "2025-09-12T07:00:57.750683Z",
"verification_data": "[]",
"verification_started_at": "2025-09-12T07:00:57.750691Z",
"metadata": null,
"id": "{your_verification_id}"
},
"template": {
"id": "{your_template_id}",
"company_id": "{your_company_id}",
"name": "qr verification",
"plans": "null",
"created_at": "2025-09-11T07:22:54.000000Z",
"updated_at": "2025-09-11T07:22:54.000000Z",
"dropzone_plans": "[494]",
"workflow_id": "{your_workflow_id}",
"webhook_url": null,
"redirect_url": null,
"webhook_secret": null
},
"tool_settings": [
{
"your_tool_settings": {}
}
],
"plans": [
{
"your_verification_plan": {}
}
]
}Processes
Create Verification
Initializes a new verification process based on a predefined template.
POST
/
api
/
v1
/
verification
/
create-verification
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/create-verification \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"template_id": "{your_trust_flow_id}"
}
'{
"message": "Verification created successfully",
"verification": {
"user_id": "{your_user_id}",
"company_id": "{your_company_id}",
"template_id": "{your_template_id}",
"status": 99,
"verification_date": "2025-09-12T07:00:57.750683Z",
"verification_data": "[]",
"verification_started_at": "2025-09-12T07:00:57.750691Z",
"metadata": null,
"id": "{your_verification_id}"
},
"template": {
"id": "{your_template_id}",
"company_id": "{your_company_id}",
"name": "qr verification",
"plans": "null",
"created_at": "2025-09-11T07:22:54.000000Z",
"updated_at": "2025-09-11T07:22:54.000000Z",
"dropzone_plans": "[494]",
"workflow_id": "{your_workflow_id}",
"webhook_url": null,
"redirect_url": null,
"webhook_secret": null
},
"tool_settings": [
{
"your_tool_settings": {}
}
],
"plans": [
{
"your_verification_plan": {}
}
]
}Legacy API Notice
This endpoint is part of the legacy IDmeta API (v1). New integrations should use API v3, which offers a more consistent API structure, standardized webhooks, and access to the latest platform features.
Authorizations
Use Bearer {your_api_token} in the Authorization header.
Body
application/json

