v1

latestOpenAPI 3.0.12026-07-2464217456.8 KB
Fields

Update field Option

post/1.0/fields/{fieldId}/update-option

Path parameters

fieldIdinteger required

The field's unique, system-generated identifier, which can be used to identify the field globally.

Request body

optionValueinteger required

The optionValue is the unique identifier and is unique for each field.

optionColor'RED' | 'YELLOW' | 'GREEN' | 'TEAL' | 'CYAN' | 'BLUE' | 'PURPLE' | 'MAGENTA' | 'GRAY' | 'COOL_GRAY'

The optionColor reflects the color of the options for the single or multiple choice field.

optionLabelstring

The optionLabel reflects the name of the options for the single or multiple choice field.

Example request

{
  "optionValue": 3,
  "optionColor": "RED",
  "optionLabel": "High"
}

Response

The requested action was successfully executed.

optionValueinteger

The optionValue is the unique identifier and is unique for each field.

optionLabelstring

The optionLabel reflects the name of the options for the single or multiple choice field.

optionColor'RED' | 'YELLOW' | 'GREEN' | 'TEAL' | 'CYAN' | 'BLUE' | 'PURPLE' | 'MAGENTA' | 'GRAY' | 'COOL_GRAY'

The optionColor reflects the color of the options for the single or multiple choice field.

Example response

{
  "optionValue": 2,
  "optionLabel": "Todo",
  "optionColor": "RED"
}