POST /rest/v1.0/projects/{project_id}/checklist/items/{item_id}/item_response
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.
Servers
- https://api.procore.com
Path parameters
Name | Type | Required | Description |
---|---|---|---|
project_id |
Integer | Yes |
Unique identifier for the project. |
item_id |
Integer | Yes |
Checklist Item ID |
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Procore-Company-Id |
Integer | Yes |
Unique company identifier associated with the Procore User Account. |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
item_response |
Object | Yes |
Item Response object |
item_response.date_value |
String | No |
Date Response - Value for Open Ended Date Items. Format should be YYYY-MM-DD |
item_response.response_option_id |
Integer | No |
Response Option ID - Value for Multiple Choice Response Items |
item_response.number_value |
Integer | No |
Number Response - Value for Open Ended Number Items |
item_response.status |
String | No |
Item Status - Value for Default-Typed items. Allowed values are 'conforming', 'non_conforming', and 'not_applicable'. |
item_response.text_value |
String | No |
Text Response - Value for Open Ended Text Items |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.