Update Action Plan Item Assignee
update_action_plan_item_assigneeUpdate an action plan item assignee by sending only the fields to change. Provide project_id and assignee id to return the modified assignee.
Instructions
Updates a single Action Plan Item Assignee. Send only the fields you intend to change; omitted fields keep their current values. 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, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified action plan item assignee on success. 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, id. Procore API: Project Management > Action Plans. Endpoint: PATCH /rest/v1.0/projects/{project_id}/action_plans/plan_item_assignees/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — action Plan Item Assignee ID | |
| 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 Plan Item Assignee's signature is holding | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| verification_method_id | No | JSON request body field — verification Method ID of the Action Plan Item Assignee to be set |