v1

latestOpenAPI 3.0.3MIT2026-07-22153276289.7 KB
Deprecated End Points

Update a data point choice

Update data of a data point choice.

patch/v3/data_point_choices/{id}

Path parameters

idinteger required

Data point choice's ID

Example:1

Data point choice's ID

Request body

dataPointstring

Uniquely identify a data point.

organizationstring

Uniquely identify an organization.

collectionstring

Uniquely identify a collection.

labelstring
valuestring
synonymsstring[] nullable
descriptionstring nullable

Example request

{
  "dataPoint": "XprEvgai",
  "organization": "mEFayXdO",
  "collection": "mEFayXdO",
  "label": "USD",
  "value": "USD"
}

Response

Successfully updated data point choice.

idinteger required

Data point choice's ID

labelstring required
valuestring required
synonymsstring[] nullable
descriptionstring nullable

Example response

{
  "id": 1,
  "label": "USD",
  "value": "USD"
}