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

# Confirm upload

> Import a validated upload into the contact list.



## OpenAPI

````yaml api-reference/campaign-audience/openapi.json POST /v1/calls/contact-lists/{id}/uploads/{uploadID}/confirm
openapi: 3.0.3
info:
  title: Persistence Campaign Audience API
  version: '1.0'
  description: Manage the contact lists that define who a campaign calls.
servers:
  - url: https://api.persistence.dev
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Campaign audience
    description: Contact list management and CSV upload.
paths:
  /v1/calls/contact-lists/{id}/uploads/{uploadID}/confirm:
    post:
      tags:
        - Campaign audience
      summary: Import a validated contact list upload
      description: >-
        Import a validated upload into the contact list. Confirm only after the
        upload reaches the `validated` status.
      operationId: confirmUpload
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Contact list ID
        - name: uploadID
          in: path
          required: true
          schema:
            type: string
          description: Upload ID
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        code:
          type: string
        error:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key issued for your workspace.

````