> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corebanq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update KYC status



## OpenAPI

````yaml put /v1/customers/{id}/kyc
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/{id}/kyc:
    put:
      summary: Update KYC status
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateKYCInput'
      responses:
        '200':
          description: KYC status updated successfully
components:
  schemas:
    UpdateKYCInput:
      type: object
      required:
        - status
        - verification_level
      properties:
        status:
          type: string
          enum:
            - pending
            - verified
            - rejected
        verification_level:
          type: string
          enum:
            - basic
            - advanced
            - full
        verified_at:
          type: string
          format: date-time
        documents:
          type: array
          items:
            $ref: '#/components/schemas/DocumentInput'
    DocumentInput:
      type: object
      required:
        - type
        - number
        - expiry_date
        - country
      properties:
        type:
          type: string
        number:
          type: string
        expiry_date:
          type: string
          format: date
        country:
          type: string

````