Update Project Task
update_project_task_company_v2_0Update an existing Bid Board project task by providing its ID, company ID, and project ID. Modify fields like description, due date, assignment, or completion status.
Instructions
Update project task. Use this to update an existing Bid Board records (only the supplied fields are changed). Updates the specified Bid Board records and returns the modified object on success. Required parameters: task_id, company_id, bid_board_project_id. Procore API (v2.0): Preconstruction > Bid Board. Endpoint: PATCH /rest/v2.0/companies/{company_id}/estimating/bid_board_projects/{bid_board_project_id}/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. | |
| bid_board_project_id | Yes | URL path parameter — unique BidBoard 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. |