Create Project Task
create_project_task_company_v2_0Creates a project task in Procore's Bid Board using company ID, project ID, and task description. Supports optional due date and assigned user.
Instructions
Create project task. Use this to create a new Bid Board records in Procore. Creates a new Bid Board records and returns the created object on success (HTTP 201). Required parameters: company_id, bid_board_project_id, value. Procore API (v2.0): Preconstruction > Bid Board. Endpoint: POST /rest/v2.0/companies/{company_id}/estimating/bid_board_projects/{bid_board_project_id}/tasks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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 | Yes | JSON request body field — the description of the task. | |
| due_date | No | JSON request body field — the due date of the task. | |
| assigned_to_user_id | No | JSON request body field — the identifier of the user to whom the task is assigned. For getting assigned_to_user_id look "company users" endpoint. |