Add Project To Group
add_project_to_groupAssign a project to a group in Procore and retrieve the updated list of group IDs for that project. Resolves company and project IDs from saved config when omitted.
Instructions
Add a Project to a Group. A successful response returns the full list of Group IDs for the Project. company_id and project_id default to the values set by procore_set_config when omitted. Creates the project 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, project_id, group_id. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | Yes | JSON request body field — unique identifier of the group | |
| 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... | |
| project_id | Yes | URL path parameter — unique identifier for the project |