Update Action Plan Section
update_action_plan_sectionUpdate an Action Plan Section in Procore by sending its ID and the fields to change. Returns the modified section with standard or extended view.
Instructions
Updates an Action Plan Section. View Parameter: - normal (default): Returns standard Action Plan Section attributes - extended: Returns standard attributes plus nested plan_items array. 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 "plan_section" in the request payload for you. project_id defaults to the value 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 action plan section 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: project_id, id. Procore API: Project Management > Action Plans. Endpoint: PATCH /rest/v1.0/projects/{project_id}/action_plans/plan_sections/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — action Plan Section ID | |
| view | No | Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response. - `normal` (default): Returns standard Action Plan Section attributes - `extended`: Return... | |
| title | No | JSON request body field — the title for this Action Plans operation | |
| project_id | Yes | URL path parameter — unique identifier for the project. |