provider integrations GET
/api/environments/{environment_id}/integrations/{id}/channels/ @utdk/posthog
/api/environments/{environment_id}/integrations/{id}/channels/ environments_integrations_channels_retrieve
- environment_id path required
- Deprecated. Use /api/projects/{project_id}/ instead.
- string
- id path required
- A unique integer value identifying this integration.
- integer
- limit query
- Maximum number of channels to return per request (max 200).
- integer
- offset query
- Number of channels to skip before returning results.
- integer
- search query
- Optional case-insensitive channel name or ID search query.
- 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.environmentsIntegrationsChannelsRetrieve({
"limit": 50,
"offset": 0
})