Create Company Action Plan Template Item
create_company_action_plan_template_itemAdd a new action plan template item to a Procore company's action plan template. Specify company, section, and title; returns the created item with its new ID.
Instructions
Creates a new company action plan template item for the specified Procore company. Pass the record's fields as top-level arguments — they are nested under "plan_template_item" 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 item 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_section_id, title. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/companies/{company_id}/action_plans/plan_template_items
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. | |
| description | No | JSON request body field — the description for this Action Plans operation | |
| holding_type | No | JSON request body field — specifies whether the current item holds all the succeeding items in the Action Plan Section or the Action Plan | |
| plan_template_section_id | Yes | JSON request body field — iD of the Company Action Plan Template Section it belongs to |