Skip to main content
POST
/
api
/
v1
/
verification
/
biometricsregistration
Biometrics Registration
curl --request POST \
  --url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/biometricsregistration \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...",
  "username": "<string>",
  "template_id": "{your_trust_flow_id}",
  "verification_id": "{your_created_verification_id}"
}
'
{
  "status": true,
  "message": "OK",
  "result": {
    "status": "success",
    "message": "Biometrics registration successful.",
    "result": {
      "associatedVerificationId": "1234567890abcdef",
      "faceId": "face_abc123xyz",
      "imageUrl": "https://example.com/faces/face_abc123xyz.jpg",
      "timestamp": "2025-07-30T09:15:00Z"
    }
  },
  "apiRequest": {
    "id": 101,
    "user_id": 5,
    "company_id": 2,
    "template_id": 129,
    "verification_id": "1234567890abcdef",
    "plan": "biometrics_registration",
    "date": "2025-07-30T09:15:00Z",
    "requestdata": "{...}",
    "requestresult": "{...}",
    "time_to_verify": 2.1534,
    "api_request_status": "SUCCESS",
    "blacklist_request_id": null,
    "key": "breg_20250730_101_xyz"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.idmetagroup.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Bearer {your_api_token} in the Authorization header.

Headers

Accept
string
default:application/json
Content-Type
string
default:application/json

Body

application/json
image
string
required

Face image as a base64 data URI (for example, data:image/jpeg;base64,...).

username
string
required

Username or display name associated with the registered biometric.

template_id
string
required

Identifier used to categorize or group requests for tracking or reporting.

verification_id
string
required

Unique identifier for the verification request, used for traceability.

Response

200 - application/json

Biometrics registration completed successfully

status
boolean
message
string
result
object
apiRequest
object