VerifiMeVerifiMe Developer Portal
API Reference

Create a customer verification invitation

Creates a verification session and returns a tracking reference and invitation links. Send the inviteUrl or qrCodeUrl to your customer to begin the VerifiMe onboarding wizard.

POST
/v1/user/invite

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.stage.verifime.com/v1/user/invite" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "code": "string"  }'
{
  "trackingReference": "9e3e546e-a767-4151-9d16-5495fad4d98f",
  "inviteUrl": "http://example.com",
  "qrCodeUrl": "http://example.com"
}
Empty