Update Project Task
update_project_task_companyUpdates a project task's details, including description, due date, assignee, or completion status. Required parameters: task_id, company_id, project_id.
Instructions
Update project task. Use this to update an existing Estimating records (only the supplied fields are changed). Updates the specified Estimating records and returns the modified object on success. Required parameters: task_id, company_id, project_id. Procore API (v2.0): Preconstruction > Estimating. Endpoint: PATCH /rest/v2.0/companies/{company_id}/projects/{project_id}/estimating/tasks/{task_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | URL path parameter — unique identifier of the task | |
| company_id | Yes | URL path parameter — unique company identifier associated with the Procore User Account. | |
| project_id | Yes | URL path parameter — unique project identifier | |
| value | No | JSON request body field — the updated description of the task. | |
| due_date | No | JSON request body field — the updated due date of the task. | |
| assigned_to_user_id | No | JSON request body field — the updated identifier of the user to whom the task is assigned. For getting assigned_to_user_id look "company users" endpoint. | |
| completed | No | JSON request body field — indicates whether the task is completed. This property is only used for updating completion status via patch request. |