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
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.membersList()