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

> Verify PRC records using license details.



## OpenAPI

````yaml api-reference-legacy/government-data/philippines/ph-prc/prc-by-license.openapi.json POST /api/v1/verification/philippines/prc
openapi: 3.0.3
info:
  title: IDmeta API - PRC By License
  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 License
      description: Verify PRC records using license 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
                - licenseNo
                - dateofBirth
                - template_id
                - verification_id
              properties:
                profession:
                  type: string
                  description: Profession of individual to be verified.
                licenseNo:
                  type: integer
                  description: Professional license number issued by PRC.
                dateofBirth:
                  type: string
                  description: Date of birth of the individual.
                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>
              licenseNo: 1234567
              dateofBirth: 15-08-1995
              template_id: '{your_trust_flow_id}'
              verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: PRC by license verified successfully
          content:
            application/json:
              example:
                status: VERIFIED
                message: OK
                response:
                  valid: true
                  data:
                    profession: Mechanical Engineer
                    birthdate: 15-08-1995
                    licenseNo: '1234567'
                  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.

````