Get A Groups Projects
get_a_groups_projectsRetrieve projects for a company group to identify group projects or find project IDs before calling other tools. Requires company_id and group_id.
Instructions
Get the projects for a given company ID and group ID. Use this to discover groups projects or to look up the id of one before calling a tool that needs it. company_id defaults to the value set by procore_set_config when omitted, and group_id must identify an existing parent record — resolve it with the matching list tool first. Returns a JSON array of groups projects; page and per_page control pagination and the response reports how many pages remain. Read-only — it changes nothing in Procore. 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, group_id. Procore API: Resource Management > Resource Planning. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/groups/{group_id}/projects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Query string parameter — filters items by their exact name. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?name=Bridge+Restoration` | |
| page | No | Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**. ### **📌 Pageable Endpoints** People endpoints that return multiple... | |
| group_id | Yes | URL path parameter — unique identifier for the group | |
| per_page | No | Number of items per page (default: 100, max: 100) | |
| 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... | |
| created_at | No | Query string parameter — filters items based on their creation timestamp. Accepts an ISO 8601 date string. | |
| updated_at | No | Query string parameter — filters items based on their last updated timestamp. Accepts an ISO 8601 date string. | |
| created_after | No | Query string parameter — filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string. | |
| updated_after | No | Query string parameter — filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string. | |
| created_before | No | Query string parameter — filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string. | |
| project_number | No | Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024` | |
| updated_before | No | Query string parameter — filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string. | |
| custom_fields_integration_name | No | Query string parameter — filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor... |