Create Action Plan Section
create_action_plan_sectionCreate a section in a Procore action plan by providing project, plan ID, and title. Returns the section with optional extended details including plan items.
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. Use this to create a new Action Plans in Procore. Creates a new Action Plans and returns the created object on success (HTTP 201). 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 |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| 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... | |
| plan_id | Yes | JSON request body field — unique identifier of the plan | |
| title | Yes | JSON request body field — the title for this Action Plans operation |