Create Checklist (Inspection)
create_checklist_inspectionCreate a new checklist inspection in a Procore project from an inspection template. Pass project_id, list_template_id, and list data to return the created checklist with its new ID.
Instructions
Creates an instance of Inspection in a given Project. project_id defaults to the value set by procore_set_config when omitted. Creates the checklist 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, list_template_id, list. Procore API (v1.1): Project Management > Inspections. Endpoint: POST /rest/v1.1/projects/{project_id}/checklist/lists
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list | Yes | JSON request body field — the list for this Inspections operation | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| list_template_id | Yes | JSON request body field — iD of the Checklist List Template (Inspection Template) that the Checklist (Inspection) will be created from | |
| run_configurable_validations | No | Query string parameter — if true, validations are run for the corresponding Configurable Field Set. |