Get All People Belonging To A Company
get_all_people_belonging_to_a_companyRetrieve all people records for a specific company using Procore's Resource Planning API. Supports pagination and filtering by name, email, or custom fields.
Instructions
Get all People belonging to a Company. 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. Procore API: Resource Management > Resource Planning. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/people
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... | |
| 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... | |
| first_name | No | Query string parameter — filter results by the exact first name of the Person. | |
| last_name | No | Query string parameter — filter results by the exact last name of the Person. | |
| No | Query string parameter — filter results by the exact email address of the Person. | ||
| employee_number | No | Query string parameter — filter results by the exact employee number of the Person. | |
| 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) |