Updates Material Header Information.
updates_material_header_informationUpdate material header information in Procore by modifying fields such as name, description, category, and custom properties. Send only fields to change; omitted fields keep current values.
Instructions
Updates fields such as name, description, category, and custom properties on a material. The material must exist in the project scope. Send only the fields you intend to change; omitted fields keep their current values. company_id and project_id default to the values 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 material header information 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: id, company_id, project_id. Procore API (v2.0): Resource Management > Materials Management. Endpoint: PATCH /rest/v2.0/companies/{company_id}/projects/{project_id}/materials_mgmt/materials/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — the Id of the material | |
| name | No | JSON request body field — name of the document header. | |
| notes | No | JSON request body field — notes associated with the document header. | |
| stock_max | No | JSON request body field — the stock max for this Materials Management operation | |
| stock_min | No | JSON request body field — the stock min for this Materials Management operation | |
| company_id | Yes | URL path parameter — the company identifier | |
| project_id | Yes | URL path parameter — the project identifier | |
| description | No | JSON request body field — description of the document header. | |
| properties_to_add | No | JSON request body field — collection of resource parameters to add to the document header. | |
| label_guids_to_add | No | JSON request body field — the label guids to add for this Materials Management operation | |
| properties_to_delete | No | JSON request body field — collection of resource parameters to delete from the document header. | |
| properties_to_update | No | JSON request body field — collection of resource parameters to update in the document header. | |
| label_guids_to_remove | No | JSON request body field — label_guids_to_remove |