> ## 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.

# Export Customer Value Conversions

> Export a customer's conversions and events as a file. Takes the same body as [Get Customer Value Conversion Report](/api-reference/post-networksreportingusmconversions) plus a `format` field. Unlike the standard conversion export, this endpoint does not accept a `columns` field — all columns are included.


Exports one customer's conversions and events as a file.

Accepts the same body as [Get Customer Value Conversion Report](/api-reference/post-networksreportingusmconversions) plus `format` (`csv` or `json`). Unlike the [standard conversion export](/api-reference/post-networksreportingconversionsexport), this endpoint does not accept a `columns` field — every column is included.

The response is a file download, with `Content-Type` and `Content-Disposition` set from the requested format.


## OpenAPI

````yaml openapi/customer-value.yaml post /networks/reporting/usmconversions/export
openapi: 3.0.3
info:
  title: Everflow Network API - Customer Value
  description: >
    Endpoints for managing Customer Value — data points and rules — in the
    Everflow network.


    Customer Value was previously called **User Management**, and the API paths
    keep the `usm` prefix from that name.


    A **data point** declares a named customer attribute (`ltv_90d`,
    `plan_tier`) that you send in with conversions. A **rule** watches those
    data points, plus standard conversion metrics, and adjusts payout or revenue
    when a customer's aggregated values meet its goals. For setup, see [Customer
    Value](https://helpdesk.everflow.io/customer/customer-value) in the Help
    Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Customer Value
    description: >-
      Data points and rules that drive Customer Value payout and revenue
      adjustments.
  - name: Reporting
    description: Conversion reporting scoped to a single customer.
paths:
  /networks/reporting/usmconversions/export:
    post:
      tags:
        - Reporting
      summary: Export Customer Value Conversions
      description: >
        Export a customer's conversions and events as a file. Takes the same
        body as [Get Customer Value Conversion
        Report](/api-reference/post-networksreportingusmconversions) plus a
        `format` field. Unlike the standard conversion export, this endpoint
        does not accept a `columns` field — all columns are included.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/UsmConversionQuery'
                - type: object
                  required:
                    - format
                  properties:
                    format:
                      type: string
                      enum:
                        - csv
                        - json
                      description: The file format for the export.
            example:
              user_id: cust_12345
              from: '2026-08-01'
              to: '2026-09-02'
              timezone_id: 67
              currency_id: USD
              show_conversions: true
              show_events: true
              format: csv
      responses:
        '200':
          description: >
            A file download, with `Content-Type` and `Content-Disposition` set
            from the requested format.
          content:
            text/csv:
              schema:
                type: string
            application/json:
              schema:
                type: string
      security:
        - API Key: []
components:
  schemas:
    UsmConversionQuery:
      type: object
      required:
        - user_id
        - from
        - to
        - timezone_id
        - currency_id
      properties:
        user_id:
          type: string
          example: cust_12345
          description: >
            The customer identifier to report on. Required — an empty value is
            rejected with `Invalid user id`.
        from:
          type: string
          description: 'Start date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
        to:
          type: string
          description: 'End date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
        timezone_id:
          type: integer
          description: Timezone identifier for the date range. See `/meta/timezones`.
        currency_id:
          type: string
          description: >-
            Currency code for monetary values. Currently only `USD` is
            supported.
        show_conversions:
          type: boolean
          description: >
            Include base conversion records. At least one of `show_conversions`
            and `show_events` must be `true`.
        show_events:
          type: boolean
          description: Include post-conversion event records.
        show_only_scrub:
          type: boolean
          description: Only include scrubbed (rejected) conversions and events.
        show_only_vt:
          type: boolean
          description: Only include view-through conversions.
        show_only_ct:
          type: boolean
          description: Only include click-through conversions.
        show_only_fail_traffic:
          type: boolean
          description: Only include fail traffic conversions.
        query:
          type: object
          description: >
            Filters and search terms, identical to the `query` object on [Get
            Conversion
            Report](/api-reference/post-networksreportingconversions).
          additionalProperties: true
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````