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

# PRC By Name

> Verify PRC records using name details.



## OpenAPI

````yaml api-reference-legacy/government-data/philippines/ph-prc/prc-by-name.openapi.json POST /api/v1/verification/philippines/prc
openapi: 3.0.3
info:
  title: IDmeta API - PRC By Name
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    variables:
      environment-subdomain:
        default: integrate
security:
  - bearerAuth: []
paths:
  /api/v1/verification/philippines/prc:
    post:
      tags:
        - Government Data
      summary: PRC By Name
      description: Verify PRC records using name details.
      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:
              type: object
              required:
                - profession
                - firstName
                - lastName
                - template_id
                - verification_id
              properties:
                profession:
                  type: string
                  description: Profession of the individual.
                firstName:
                  type: string
                  description: First name of the individual to be verified.
                lastName:
                  type: string
                  description: Last name of the individual to be verified.
                template_id:
                  type: integer
                  description: >-
                    Identifier used to categorize or group requests for tracking
                    or reporting.
                verification_id:
                  type: string
                  description: A unique ID used to identify your verification request.
            example:
              profession: <string>
              firstName: <string>
              lastName: <string>
              template_id: '{your_trust_flow_id}'
              verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: PRC by name verified successfully
          content:
            application/json:
              example:
                status: VERIFIED
                message: OK
                response:
                  valid: true
                  data:
                    profession: Mechanical Engineer
                    firstName: Juan
                    lastName: Dela Cruz
                  message: PRC record matched
                riskRating: LOW
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````