Create Checklist Item Response
create_checklist_item_responseAdd a checklist item response with the appropriate value type (text, number, date, option, or status) using item_id and project_id. Returns the new response ID or an error.
Instructions
Create Checklist Item Response for a specified Checklist Item Checklist Item Response can have one of the following payload formats (text_value, number_value, date_value, response_option, status) A specific Item Type can only leverage its corresponding format. *For instance, Number Items can only leverage a number_value while Date Items can only leverage a date_value. Pass the record's fields as top-level arguments — they are nested under "item_response" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted, and item_id must identify an existing parent record — resolve it with the matching list tool first. Creates the checklist item response 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: item_id, project_id. Procore API: Project Management > Inspections. Endpoint: POST /rest/v1.0/projects/{project_id}/checklist/items/{item_id}/item_response
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | JSON request body field — item Status - Value for Default-Typed items. Allowed values are 'conforming', 'non_conforming', and 'not_applicable'. | |
| item_id | Yes | URL path parameter — unique identifier of the item | |
| date_value | No | JSON request body field — date Response - Value for Open Ended Date Items. Format should be YYYY-MM-DD | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| text_value | No | JSON request body field — text Response - Value for Open Ended Text Items | |
| number_value | No | JSON request body field — number Response - Value for Open Ended Number Items | |
| response_option_id | No | JSON request body field — response Option ID - Value for Multiple Choice Response Items |