Skip to main content
POST
/
api
/
CustomFields
/
PredefinedValues
/
{fieldId}
Updates Predefined Field Values.
curl --request POST \
  --url https://api.example.com/api/CustomFields/PredefinedValues/{fieldId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "values": [
    {
      "id": 123,
      "fieldId": 123,
      "value": "<string>",
      "isDefault": true
    }
  ],
  "deletedIds": [
    123
  ]
}
'

Path Parameters

fieldId
integer<int32>
required

Body

application/json
values
object[] | null
deletedIds
integer<int32>[] | null

Response

200

OK