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

# Delete Data Point

> Delete a Customer Value data point. The request fails if the data point is referenced by any rule — as a goal metric, as a payout or revenue source, or as a progress setting. Remove those references first, or set the data point to `inactive` to stop using it while keeping its history.


Delete a Customer Value data point by its ID.

The request fails while any rule still references the data point — as a goal metric, as a payout or revenue source, or as a progress setting. Remove those references first, or set the data point to `inactive` to retire it while keeping the history already collected.


## OpenAPI

````yaml openapi/customer-value.yaml delete /networks/customervalue/datapoints/{dataPointId}
openapi: 3.0.3
info:
  title: Everflow Network API - Customer Value
  description: >
    Endpoints for managing Customer Value data points and rules. Customer Value
    tracks the lifetime activity of an individual customer (identified by the
    `user_id` passed on conversions) and adjusts payout and revenue based on
    what that customer has done so far. Data points are the custom attributes
    you send with conversions; rules define the goals a customer must reach and
    the payout or revenue outcome applied once they do.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Data Points
  - name: Rules
paths:
  /networks/customervalue/datapoints/{dataPointId}:
    delete:
      tags:
        - Data Points
      summary: Delete Data Point
      description: >
        Delete a Customer Value data point. The request fails if the data point
        is referenced by any rule — as a goal metric, as a payout or revenue
        source, or as a progress setting. Remove those references first, or set
        the data point to `inactive` to stop using it while keeping its history.
      parameters:
        - in: path
          name: dataPointId
          required: true
          schema:
            type: integer
          description: The data point identifier.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
      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

````