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

# Upload Conversions CSV

Import conversions via CSV file. This is a two-step process:

1. **Upload the CSV** using the [Upload Temp File](/api-reference/post-networksupload) endpoint to get a temporary URL.

2. **Create the import** using this endpoint with the `temp_url` from step 1.

For CSV format requirements and column specifications, see the [Conversion Imports guide](https://helpdesk.everflow.io/customer/manual-conversion-upload).


## OpenAPI

````yaml openapi/reporting-conversions.yaml post /networks/reporting/upload/conversions
openapi: 3.0.3
info:
  title: Everflow Network API - Conversion Reporting
  description: >
    Conversion reporting and management endpoints for the Everflow partner
    marketing platform. Search, retrieve, update, and create conversions. For
    more detail, see [Conversion
    Report](https://helpdesk.everflow.io/customer/conversion-report) in the Help
    Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Conversion reporting and management endpoints.
paths:
  /networks/reporting/upload/conversions:
    post:
      tags:
        - Reporting
      summary: Upload Conversions CSV
      requestBody:
        required: true
        content:
          application/json:
            example:
              file:
                temp_url: >-
                  https://usercontent.everflowclient.io/123/temp/a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4
                original_file_name: conversions_jan_2026.csv
            schema:
              type: object
              required:
                - file
              properties:
                file:
                  type: object
                  description: File reference for the CSV upload.
                  properties:
                    temp_url:
                      type: string
                      description: >
                        Temporary URL returned by the Upload Temp File endpoint.
                        Format:
                        `https://usercontent.everflowclient.io/<network_id>/temp/<guid>`
                    original_file_name:
                      type: string
                      description: Original name of the CSV file.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: Upload result with processing status.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````