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

# MYS KYB Comprehensive

> Comprehensive Know Your Business verification for Malaysian companies. Synchronous.

Run a comprehensive Know Your Business verification on a Malaysian company using its SSM (Suruhanjaya Syarikat Malaysia) registration number. The response includes company information, shareholders, and major persons (directors / officers).

## Data source

Company information is retrieved from the **Companies Commission of Malaysia (SSM)**.


## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/kyb/mys/comprehensive
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: 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/kyb/mys/comprehensive:
    post:
      tags:
        - KYB
      summary: MYS KYB Comprehensive
      description: >-
        Run a comprehensive Know Your Business verification on a Malaysian
        company by its SSM registration number. Returns synchronously.
      operationId: mysKybComprehensiveVerificationV3
      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/MysKybRequest'
            examples:
              default:
                summary: MYS KYB Comprehensive request
                value:
                  trustValidationId: '{your_trust_validation_id}'
                  trustFlowId: 0
                  businessIdentificationNumber: '202001012345'
      responses:
        '200':
          description: Verification processed successfully (sync).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KybSyncResponse'
components:
  schemas:
    MysKybRequest:
      type: object
      required:
        - trustValidationId
        - trustFlowId
        - businessIdentificationNumber
      properties:
        trustValidationId:
          type: string
          format: uuid
          description: Trust Validation identifier returned by Create Verification.
        trustFlowId:
          type: integer
          description: Trust Flow identifier this verification belongs to.
        businessIdentificationNumber:
          type: string
          description: Malaysian SSM registration number of the company to verify.
    KybSyncResponse:
      type: object
      description: >-
        Synchronous KYB response envelope. `data.result` contains the upstream
        registry payload (typically with `CompanyInformation`, `Shareholders`,
        and `majorPerson` sections).
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            code:
              type: string
              description: Upstream response code ("200" on success).
            result:
              type: object
              additionalProperties: true
              description: Registry payload.
            message:
              type: string
            lastUpdated:
              type: string
            orderNo:
              type: string
              description: Upstream order identifier for support / lookup.
        verificationStatus:
          type: string
          example: VERIFIED
        verificationStatusCode:
          type: integer
          example: 3
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
          format: uuid
        verificationType:
          type: string
          description: >-
            Plan identifier (for example, `ph_kyb_comprehensive`,
            `aus_kyb_comprehensive`).
        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.

````