get_project_members
List members of a project with filters for name, email, role, active status, or bot. Retrieve member details and roles by project ID.
Instructions
List members of a project (filterable).
Optional filters first_name/last_name/email/display_name (case-insensitive contains), role_slug (exact), is_active, is_bot — combined with AND.
Args: project_id: UUID of the project. order_by: Sort field; prefix '-' for descending.
Returns: Paginated envelope: results (members incl. role, role_slug, is_active, is_bot). Self-hosted Plane returns all members in a single page, so next_page_results is always false.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| No | |||
| is_bot | No | ||
| order_by | No | ||
| is_active | No | ||
| last_name | No | ||
| role_slug | No | ||
| first_name | No | ||
| project_id | Yes | ||
| display_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| results | Yes | ||
| grouped_by | No | ||
| extra_stats | No | ||
| next_cursor | Yes | ||
| prev_cursor | Yes | ||
| total_count | Yes | ||
| total_pages | Yes | ||
| total_results | Yes | ||
| sub_grouped_by | No | ||
| next_page_results | Yes | ||
| prev_page_results | Yes |