Create A Response
create_a_responseCreates a new inspection response for a specified company, using a name and corresponding status. Returns the response with its new ID.
Instructions
Creates a Response for a specified Company. Pass the record's fields as top-level arguments — they are nested under "response" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the 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: company_id, name, corresponding_status. Procore API: Project Management > Inspections. Endpoint: POST /rest/v1.0/companies/{company_id}/checklist/responses
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — name of the Response | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| corresponding_status | Yes | JSON request body field — item Status that the Response corresponds to |