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

# List Data Points

> Retrieve every Customer Value data point defined on the network. This endpoint is not paged — all data points are returned in a single response.


Returns every Customer Value data point on the network. Customer Value was previously called **User Management**, which is where the `usm` in the path comes from.

A data point declares a customer attribute you send in with conversions — `ltv_90d`, `plan_tier`, `signup_source` — that [Customer Value rules](/api-reference/get-networksusmrules) can then measure.

This endpoint is not paged. Reading data points needs an API key with Offers (read or write) or Reporting (Entity or Conversion) access.


## OpenAPI

````yaml openapi/customer-value.yaml get /networks/usm/datapoints
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/usm/datapoints:
    get:
      tags:
        - Customer Value
      summary: List Data Points
      description: >
        Retrieve every Customer Value data point defined on the network. This
        endpoint is not paged — all data points are returned in a single
        response.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data_points:
                    type: array
                    items:
                      $ref: '#/components/schemas/DataPoint'
      security:
        - API Key: []
components:
  schemas:
    DataPoint:
      allOf:
        - type: object
          properties:
            network_usm_data_point_id:
              type: integer
              example: 1
              description: Unique data point ID.
            network_id:
              type: integer
              example: 1
              description: Network ID.
        - $ref: '#/components/schemas/DataPointInput'
        - type: object
          properties:
            time_created:
              type: integer
              example: 1788398582
              description: Unix timestamp of creation.
            time_saved:
              type: integer
              example: 1788398592
              description: Unix timestamp of last update.
    DataPointInput:
      type: object
      required:
        - identifier
        - name
        - type
        - status
      properties:
        identifier:
          type: string
          maxLength: 255
          example: ltv_90d
          description: >
            The key you send with conversions and reference from rule goals.
            Required, and unique within the network.
        name:
          type: string
          maxLength: 255
          example: 90-Day LTV
          description: |
            The display name shown in the Everflow UI.
        type:
          type: string
          enum:
            - text
            - number
          description: >
            The value type. Use `number` for data points compared with
            `greater_than` or `less_than`, and `text` for those matched with
            `exact_match`, `contains`, `begins_with` or `ends_with`.
        status:
          type: string
          enum:
            - active
            - inactive
          description: |
            Whether the data point is collected and evaluated.
        description:
          type: string
          maxLength: 500
          description: Optional free-text note about what the data point holds.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````