provider organizationsmembers GET /api/organizations/{organization_id}/members/
@utdk/posthog /api/organizations/{organization_id}/members/
members_list
limit query
Number of results to return per page.
integer
offset query
The initial index from which to return the results.
integer
order query
Sort order. Defaults to `-joined_at`.
enum: -joined_at, joined_at
organization_id path required
ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/.
string
search query
Match against member `first_name`, `last_name`, and `email`. Returns exact (case-insensitive substring) matches only; if no exact match exists, returns similar (fuzzy trigram — typos, prefix-as-you-type) matches instead. Each result's `search_match_type` is `exact` or `similar`. Capped at 200 characters.
string

Try it

Authentication
Configure credentials for PostHog API
membersList
GET/api/organizations/{organization_id}/members/

Parameters

required

ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/.

Number of results to return per page.

The initial index from which to return the results.

Sort order. Defaults to `-joined_at`.

Match against member `first_name`, `last_name`, and `email`. Returns exact (case-insensitive substring) matches only; if no exact match exists, returns similar (fuzzy trigram — typos, prefix-as-you-type) matches instead. Each result's `search_match_type` is `exact` or `similar`. Capped at 200 characters.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.membersList()