Create Material
create_materialCreate a material entry in a Procore project by providing project ID and material details, returning the saved record with its new ID.
Instructions
Create a new Material Entry. Pass the record's fields as top-level arguments — they are nested under "material" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the material and returns it with its new id (HTTP 201); calling it again creates another record. 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: project_id. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/projects/{project_id}/materials
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uom | No | JSON request body field — unit of measure for the material | |
| name | No | JSON request body field — name of the material | |
| quantity | No | JSON request body field — quantity of the material | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| description | No | JSON request body field — description of the material | |
| time_and_material_entry_id | No | JSON request body field — time & Material Entry Id the material is associated with |