Create Checklist Item Response
create_checklist_item_responseCreate a response for a Procore inspection checklist item, submitting the appropriate value type based on the item (text, number, date, response option, or status).
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. Use this to create a new Inspections in Procore. Creates a new Inspections and returns the created object on success (HTTP 201). 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 |
|---|---|---|---|
| item_id | Yes | URL path parameter — unique identifier of the item | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| status | No | JSON request body field — item Status - Value for Default-Typed items. Allowed values are 'conforming', 'non_conforming', and 'not_applicable'. | |
| response_option_id | No | JSON request body field — response Option ID - Value for Multiple Choice Response Items | |
| 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 | |
| date_value | No | JSON request body field — date Response - Value for Open Ended Date Items. Format should be YYYY-MM-DD |