Add Person To A Group
add_person_to_a_groupGrant a person access to a Procore group. Use company_id, person_id, and group_id; resolve the person first. Creates the assignment and returns the new record.
Instructions
Grant a Person access to or to make them available to a new Group. company_id defaults to the value set by procore_set_config when omitted, and person_id must identify an existing parent record — resolve it with the matching list tool first. Creates the person 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, person_id, group_id. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/people/{person_id}/groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | Yes | JSON request body field — uUID reference to the Group being assigned. | |
| 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... |