Create Submittal Response
create_submittal_responseCreate a submittal response for a specified project by providing the project ID, response name, and considered status. Returns the new record with its ID, or an HTTP error if the request fails.
Instructions
Create a Submittal Response for the specified Project. Pass the record's fields as top-level arguments — they are nested under "submittal_response" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the submittal 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: project_id, name, considered. Procore API: Project Management > Submittals. Endpoint: POST /rest/v1.0/projects/{project_id}/submittal_responses
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — name of Submittal Response | |
| considered | Yes | JSON request body field — mapping of the Submittal Response | |
| project_id | Yes | URL path parameter — unique identifier for the project. |