Update Submittal Response
update_submittal_responseUpdate the name of a submittal response for a specified project on Procore. Only include fields to change; others keep their current values.
Instructions
Update the name of a Submittal Response for the specified Project. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "submittal_response" in the request payload for you. company_id and project_id default to the values set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified submittal response on success. 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, project_id, id, name. Procore API (v2.0): Project Management > Submittals. Endpoint: PATCH /rest/v2.0/companies/{company_id}/projects/{project_id}/submittal_responses/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — submittal Response ID | |
| name | Yes | JSON request body field — name of Submittal Response | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. |