Create Company Inspection Template Item
create_company_inspection_template_itemAdds a new inspection item to an existing company inspection template. Provide company and template IDs, plus optional item details, and receive the created record with its ID.
Instructions
Creates a Company Inspection Template Item for a specified Checklist Template. Pass the record's fields as top-level arguments — they are nested under "inspection_template_item" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted, and inspection_template_id must identify an existing parent record — resolve it with the matching list tool first. Creates the company inspection template item 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: company_id, inspection_template_id. Procore API: Project Management > Inspections. Endpoint: POST /rest/v1.0/companies/{company_id}/inspection_templates/{inspection_template_id}/items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — the name for this Inspections operation | |
| type | No | JSON request body field — item type | |
| position | No | JSON request body field — item position | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| section_id | No | JSON request body field — unique identifier of the section | |
| response_set_id | No | JSON request body field — unique identifier of the response set | |
| inspection_template_id | Yes | URL path parameter — the ID of the Company Inspection Template |