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

# Phone-Identity Match

> Match an Indonesian phone number against a name and return a match score and match level.



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/indonesia/phone-identity
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
        enum:
          - integrate
          - api.ph
        description: >-
          IDmeta environment subdomain. Use `api.ph` for
          portalph.idmetagroup.com and `integrate` for verify.idmetagroup.com.
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Verification process endpoints
  - name: Trust Flow Links
    description: Trust Flow link generation endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
  - name: Alternative Verifications
    description: Alternative verification and intelligence endpoints
  - name: OCR
    description: Document OCR extraction endpoints
paths:
  /api/v3/verifications/indonesia/phone-identity:
    post:
      tags:
        - Government Data
      summary: Phone-Identity Match
      description: >-
        Match an Indonesian phone number against a name and return a match score
        and match level.


        Provide the phone number in international format without the leading `+`
        (for example, `6281234567890`).
      operationId: indonesiaPhoneIdentityMatchV3
      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/IdnPhoneIdentityMatchRequest'
            examples:
              default:
                summary: Phone-identity match request
                value:
                  phone_number: '6281234567890'
                  name: Budi Santoso
                  trustFlowId: 0
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: Indonesia phone-identity match processed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdnPhoneIdentityMatchResponse'
              example:
                success: true
                message: Indonesia Phone Identity verification processed successfully
                data:
                  phone_number: '6281234567890'
                  name: Budi Santoso
                  match_score: 1
                  match_level: VERY_HIGH
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: idn_phone_identity
                metadata: null
                createdAt: 2026-06-23 13:06:38+0000
components:
  schemas:
    IdnPhoneIdentityMatchRequest:
      type: object
      required:
        - phone_number
        - name
        - trustFlowId
        - trustValidationId
      properties:
        phone_number:
          type: string
          description: >-
            Phone number in international format without the leading `+` (for
            example, `6281234567890`).
        name:
          type: string
          description: Full name to match against the phone number.
        trustFlowId:
          type: integer
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        trustValidationId:
          type: string
          description: A unique ID used to identify your verification request.
    IdnPhoneIdentityMatchResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            phone_number:
              type: string
              description: Phone number that was checked.
            name:
              type: string
              description: Name that was matched against the phone number.
            match_score:
              type: number
              description: Match score between 0 and 1.
            match_level:
              type: string
              description: Match level, for example `VERY_HIGH`.
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
        verificationType:
          type: string
        metadata:
          nullable: true
        createdAt:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````