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

# Upload Application CV

> Upload a CV (PDF or Word) to an existing application; extraction runs asynchronously.



## OpenAPI

````yaml /swagger/v1_schema.yaml post /applications/{application_id}/cv
openapi: 3.0.3
info:
  title: TalentUnveiled Public API
  version: 1.0.0
  description: API documentation for TalentUnveiled endpoints
servers:
  - url: https://api.talentunveiled.com/api/v1
    description: Production server
security: []
paths:
  /applications/{application_id}/cv:
    post:
      tags:
        - TalentUnveiled Public API
      summary: Upload Application CV
      description: >-
        Upload a CV (PDF or Word) to an existing application; extraction runs
        asynchronously.
      operationId: applications_cv_create
      parameters:
        - in: path
          name: application_id
          schema:
            type: string
            format: uuid
          required: true
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/JobApplicationUploadCVRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/JobApplicationUploadCVRequestRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobApplicationUploadCVResponse'
          description: ''
      security:
        - apiKeyAuth: []
        - {}
components:
  schemas:
    JobApplicationUploadCVRequestRequest:
      type: object
      properties:
        cv_file:
          type: string
          format: binary
      required:
        - cv_file
    JobApplicationUploadCVResponse:
      type: object
      properties:
        job_application_id:
          type: string
        cv_processing_started:
          type: boolean
      required:
        - cv_processing_started
        - job_application_id
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication for the public API. Pass your API key as a Bearer
        token.

````