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

# PH Philsys Tier 1 (Personal Information)

> Verify Philippine PhilSys records using personal information.

<CardGroup cols={1}>
  <Card title="Philsys API Help Page" href="https://docs.idmetagroup.com/resources/philsys-check-via-api">
    Verify Philippine PhilSys records using personal information.
  </Card>
</CardGroup>


## OpenAPI

````yaml api-reference/government-data/philippines/ph-philsys-check-tier-1/ph-philsys-check-tier-1-personal-information.openapi.json POST /api/v3/verifications/philippines/philsys-check
openapi: 3.0.3
info:
  title: IDmeta API - PH Philsys Tier 1 (Personal Information)
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    variables:
      environment-subdomain:
        default: integrate
security:
  - bearerAuth: []
paths:
  /api/v3/verifications/philippines/philsys-check:
    post:
      tags:
        - Government Data
      summary: PH Philsys Tier 1 (Personal Information)
      description: Verify Philippine PhilSys records using personal information.
      operationId: phPhilsysCheckTier1PersonalInformationV3Fixed
      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
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
            example: Bearer {your_api_token}
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - pcnFormData
                - face_liveness_session_id
                - trustFlowId
                - trustValidationId
              properties:
                pcnFormData:
                  type: string
                  description: >-
                    JSON string containing first_name, middle_name, last_name,
                    suffix, and birth_date.
                face_liveness_session_id:
                  type: string
                  description: Liveness session ID retrieved from the IDmeta Liveness SDK.
                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.
            example:
              pcnFormData:
                first_name: John
                middle_name: ''
                last_name: Doe
                suffix: ''
                birth_date: '1990-01-01'
              face_liveness_session_id: '{liveness session id retrieved from the IDmeta Liveness SDK}'
              trustFlowId: 0
              trustValidationId: '{your_created_trust_validation_id}'
      responses:
        '200':
          description: PH Philsys Tier 1 personal information verified successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhPhilsysCheckTier1Response'
              example:
                success: true
                message: PhilSys Tier 1 Check processed successfully
                data:
                  isValid: true
                  fullName: JUAN DELA CRUZ
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 0
                trustValidationId: 9af6e3d7-09c8-489e-806e-d1e67a45a3e3
                verificationType: philsys_check_tier_1
                metadata: null
components:
  schemas:
    PhPhilsysCheckTier1Response:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            isValid:
              type: boolean
              description: >-
                Always returned. Indicates whether the PhilSys Tier 1 check is
                valid.
            fullName:
              type: string
              description: >-
                Returned only when `isValid` is `true`. Omitted when `isValid`
                is `false`.
          required:
            - isValid
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
          description: Trust flow ID (numeric or echoed identifier).
        trustValidationId:
          type: string
          format: uuid
        verificationType:
          type: string
        metadata:
          type: object
          nullable: true
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````