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

# Post face



## OpenAPI

````yaml KYC post /face
openapi: 3.0.1
info:
  title: KYC
  description: kyc
  version: 1.0.0
servers:
  - url: https://gateway.varchev.com/kyc
security: []
paths:
  /face:
    post:
      parameters:
        - name: X-token
          in: header
          required: true
          style: simple
          explode: false
          schema:
            type: string
            description: authentication token from /authorize response
      requestBody:
        description: Sample Payload
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FaceRequest'
            example:
              idPhoto: data:image/png;base64,/9j/4AAQSkZJRgABAgAAAQABAAD
        required: false
      responses:
        default:
          description: Default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FaceResponse'
      security:
        - default: []
components:
  schemas:
    FaceRequest:
      required:
        - idPhoto
      type: object
      properties:
        idPhoto:
          type: string
    FaceResponse:
      type: object
      properties:
        idPhoto:
          type: string
  securitySchemes:
    default:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://test.com
          scopes: {}

````