Clear Custom field values on a plan item

πŸ“˜

Use the example below to remove all custom field values set on a given item.

curl --location --request DELETE 'https://next.liquidplanner.com/api/workspaces/<workspace id>/items/v1/<item id>/custom-field-values/all' \
--header 'Authorization: Bearer <API Token>' \

πŸ“˜

Use the example below to clear the values of specific custom fields set on a plan item.

curl --location --request DELETE 'https://next.liquidplanner.com/api/workspaces/<workspace id>/items/v1/<item id>/custom-field-values/by-name' \
--header 'Authorization: Bearer <API Token>' \
--header 'Content-Type: application/json' \
--data-raw '["<Custom Field name>", "<Custom Field name>"]'