v1

latestOpenAPI 3.0.3MIT2026-07-22153276289.7 KB
Deprecated End Points

Create a data point choice

Create a custom data point choice.

post/v3/data_point_choices

Request body

dataPointstring required

Uniquely identify a data point.

organizationstring

Uniquely identify an organization.

collectionstring

Uniquely identify a collection.

labelstring required
valuestring required
synonymsstring[] nullable
descriptionstring nullable

Example request

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

Response

Successfully created a 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"
}