Create Action Plan Item Assignee
create_action_plan_item_assigneeCreate an assignee for an action plan item in Procore by specifying a party or role (or both), and get the new record ID.
Instructions
Create an Action Plan Item Assignee. NOTE: Though both body party_id and role parameters are marked as required below, at least one of the two needs to be passed in (i.e., if you pass in a role then you do not need to also pass in a party_id, and vice versa, though you can pass in both parameters). Pass the record's fields as top-level arguments — they are nested under "plan_item_assignee" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the action plan item assignee 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_item_id. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/projects/{project_id}/action_plans/plan_item_assignees
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| role | No | JSON request body field — role of the Action Plan Item Assignee to be set | |
| party_id | No | JSON request body field — party Person ID of the Action Plan Item Assignee to be set | |
| is_holding | No | JSON request body field — indicates whether or not the Action Item Assignee's signature is holding | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| plan_item_id | Yes | JSON request body field — action Plan Item ID of the Action Plan Item Assignee to be set | |
| verification_method_id | No | JSON request body field — verification Method ID of the Action Plan Item Assignee to be set |