Create Action Plan Section
create_action_plan_sectionCreate a new section in a Procore action plan. Supply project ID, plan ID, and title to add the section and get its new ID.
Instructions
Creates an Action Plan Section for a given Action Plan. View Parameter: - normal (default): Returns standard Action Plan Section attributes - extended: Returns standard attributes plus nested plan_items array. 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. Creates the action plan section 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, plan_id, title. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/projects/{project_id}/action_plans/plan_sections
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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 | Yes | JSON request body field — the title for this Action Plans operation | |
| plan_id | Yes | JSON request body field — unique identifier of the plan | |
| project_id | Yes | URL path parameter — unique identifier for the project. |