> ## 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 by its ID. Rule goals that reference the deleted identifier stop matching, so review your rules after deleting a data point.


Deletes a Customer Value data point by its ID.

Deleting a data point does not delete rule goals that reference its `identifier` — those goals simply stop matching, which silently stops the rule from firing. Review your [rules](/api-reference/get-networksusmrules) after deleting a data point.

To stop collecting a data point while keeping it and its rules intact, [update](/api-reference/put-networksusmdatapoints) it with `status` set to `inactive` instead.


## OpenAPI

````yaml openapi/customer-value.yaml delete /networks/usm/datapoints/{dataPointId}
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/{dataPointId}:
    delete:
      tags:
        - Customer Value
      summary: Delete Data Point
      description: >
        Delete a Customer Value data point by its ID. Rule goals that reference
        the deleted identifier stop matching, so review your rules after
        deleting a data point.
      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

````