Remove A Person From A Group
remove_a_person_from_a_groupRemove a person from a specific group in Procore using company, person, and group IDs. Permanently deletes the group membership.
Instructions
Removes a person from a given group. Note that when removing the last group_id, the Group IDs can not be empty for an assignable resource or a non-admin person. Therefore, the removing the last group id from an assignable resource or a non-admin person is not allowed. Confirm the target id with the matching show or list tool before calling. company_id defaults to the value set by procore_set_config when omitted, and person_id, group_id must identify existing parent records — resolve them with the matching list tool first. Permanently removes the person. This cannot be undone, and a repeat call returns 404. 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, person_id, group_id. Procore API: Resource Management > Resource Planning. Endpoint: DELETE /rest/v1.0/workforce-planning/v2/companies/{company_id}/people/{person_id}/groups/{group_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | Yes | URL path parameter — unique identifier for the group | |
| person_id | Yes | URL path parameter — unique identifier for the person | |
| company_id | Yes | URL path parameter — unique identifier for the company. This parameter accepts both formats: - **Recommended**: Procore company ID (integer) - Use this for new integrations - Legacy: LaborChart UUID format (uuid string... |