Create Company Action Plan Template Section
create_company_action_plan_template_sectionCreates a new section within a Company Action Plan Template by specifying company, template, and title. Returns the newly created section with its ID.
Instructions
Creates a Company Action Plan Template Section for a given Company Action Plan Template. Pass the record's fields as top-level arguments — they are nested under "plan_template_section" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the company action plan template 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: company_id, plan_template_id, title. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/companies/{company_id}/action_plans/plan_template_sections
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | JSON request body field — the title for this Action Plans operation | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| plan_template_id | Yes | JSON request body field — iD of the Company Action Plan Template to be created under |