> ## 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.

# Biometrics Registration

> Capture and register user biometric data for secure future authentication.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v1/verification/biometricsregistration
openapi: 3.0.3
info:
  title: IDmeta API
  description: IDmeta verification and integration API.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    description: Your environment (replace `{environment-subdomain}`)
    variables:
      environment-subdomain:
        default: integrate
        description: IDmeta environment subdomain
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Verification process endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
paths:
  /api/v1/verification/biometricsregistration:
    post:
      tags:
        - Compliance
      summary: Biometrics Registration
      description: >-
        Capture and register user biometric data for secure future
        authentication.
      operationId: biometricsRegistration
      parameters:
        - name: Accept
          in: header
          required: false
          schema:
            type: string
            default: application/json
        - name: Content-Type
          in: header
          required: false
          schema:
            type: string
            default: application/json
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BiometricsRegistrationRequest'
            examples:
              default:
                summary: Register biometric from image
                value:
                  image: data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...
                  username: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: Biometrics registration completed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BiometricsRegistrationResponse'
              example:
                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
components:
  schemas:
    BiometricsRegistrationRequest:
      type: object
      required:
        - image
        - username
        - template_id
        - verification_id
      properties:
        image:
          type: string
          description: >-
            Face image as a base64 data URI (for example,
            data:image/jpeg;base64,...).
        username:
          type: string
          description: Username or display name associated with the registered biometric.
        template_id:
          type: string
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        verification_id:
          type: string
          description: >-
            Unique identifier for the verification request, used for
            traceability.
    BiometricsRegistrationResponse:
      type: object
      properties:
        status:
          type: boolean
        message:
          type: string
        result:
          type: object
          additionalProperties: true
        apiRequest:
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````