Get A Groups Projects
get_a_groups_projectsRetrieve the projects assigned to a company group. Supports pagination and filtering by name, project number, custom fields, and timestamps.
Instructions
Get the projects for a given company ID and group ID. Use this to fetch the full details of a specific Resource Planning records by its identifier. Returns a paginated JSON array of Resource Planning records. Use page and per_page to control pagination; the response includes pagination metadata. 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 |
|---|---|---|---|
| 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... | |
| group_id | Yes | URL path parameter — unique identifier for the group | |
| 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... | |
| 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` | |
| 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` | |
| 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... | |
| created_at | No | Query string parameter — filters items based on their creation timestamp. 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. | |
| created_after | No | Query string parameter — filters items created on or after the specified date (inclusive). 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. | |
| updated_before | No | Query string parameter — filters items updated on or before 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. | |
| per_page | No | Number of items per page (default: 100, max: 100) |