Update the Custom Field Value and Status of a Task
This documentation is for LiquidPlanner New: next.liquidplanner.com
Use the example below to update a Task's custom field value and schedule status.
When trying examples, remember to use the IDs from your workspace and encode filter parameters as explained in Character Escaping / Encoding.
curl --location --request PUT 'https://next.liquidplanner.com/api/workspaces/<workspace id>/items/v1/<task id> \
--header 'Authorization: Bearer <API Token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"taskStatusId":"2467",
"customFieldValues": [
{
"name": "Color",
"value": "Yellow"
}]
}'
💡 Use the Task Status endpoint to pull a list of all the tasks statuses from the workspace.
Updated over 2 years ago