List Project Roles
list_project_rolesRetrieve all user-role assignments in a project with pagination and filtering options.
Instructions
Return a list of all relationships between Users and Roles in a specified Project. Use this to enumerate Project records when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Project records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id. Procore API: Core > Project. Endpoint: GET /rest/v1.0/project_roles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Query string parameter — unique identifier for the project. | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| filters__created_at | No | Query string parameter — return item(s) created within the specified ISO 8601 datetime range. | |
| filters__add_to_project_team | No | Query string parameter — filter results based on the `add_to_project_team` column. Accepts `true` or `false` to include or exclude items accordingly. |