Update Company WBS Segment
update_company_wbs_segmentUpdate an existing company-level WBS segment by sending only the fields you want to change. Use to modify segment name or project-level permission flags via the Procore API.
Instructions
Update company level WBS Segment. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "segment" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified company WBS segment on success. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, id. Procore API: Construction Financials > Work Breakdown Structure. Endpoint: PATCH /rest/v1.0/companies/{company_id}/work_breakdown_structure/segments/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the Work Breakdown Structure resource | |
| name | No | JSON request body field — segment Name | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| segment_item_list_id | No | Query string parameter — segment Item List ID | |
| project_can_delete_origin_company | No | JSON request body field — whether Segment Items inherited from the company-level are able to be deleted from a Project. | |
| project_can_modify_origin_project | No | JSON request body field — whether project-specific Segment Items are able to be added/edited/removed from a Project. |