Skip to main content
PUT
Update Data Point
Update a Customer Value data point. data_point_id selects the record to update. Only name, status, and description are applied — identifier and type are immutable, since rules and stored customer history reference them. Both must still be present and valid in the payload. Omitting status leaves the stored value unchanged, so a payload that simply does not mention it will not reactivate an inactive data point.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
data_point_id
integer
required

The data point to update.

identifier
string
required

Must be present and non-empty, but changes are ignored — the identifier is immutable.

Maximum string length: 255
name
string
required

Display name of the data point.

Maximum string length: 255
type
enum<string>
required

Must be present and valid, but changes are ignored — the type is immutable.

Available options:
text,
number
status
enum<string>

Whether rules can reference this data point. Omit it to leave the current status unchanged.

Available options:
active,
inactive
description
string

Free-form description of the data point.

Response

200 - application/json
network_id
integer
read-only

Network ID.

Example:

1

data_point_id
integer
read-only

Unique data point ID.

Example:

12

identifier
string

The key used to send this data point on a conversion. Lowercased on save and unique within the network.

Maximum string length: 255
Example:

"subscription_tier"

name
string

Display name of the data point.

Maximum string length: 255
Example:

"Subscription tier"

type
enum<string>

The value type. number data points can be summed and compared and are the only ones usable as a payout or revenue source; text data points support string comparisons only.

Available options:
text,
number
status
enum<string>

Only active data points can be referenced by a rule. Setting a data point to inactive stops new rules from using it.

Available options:
active,
inactive
description
string

Free-form description of the data point.

time_created
integer
read-only

Unix timestamp of creation.

Example:

1734455015

time_saved
integer
read-only

Unix timestamp of last update.

Example:

1734455015