PostHog · Schema

SlackChannelsResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
channels array Slack channels visible to the PostHog Slack app.
lastRefreshedAt string ISO 8601 timestamp of the last full Slack API refresh (only set on full lists, not single-channel lookups).
View JSON Schema on GitHub

JSON Schema

posthog-slackchannelsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SlackChannelsResponse",
  "title": "SlackChannelsResponse",
  "type": "object",
  "properties": {
    "channels": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SlackChannel"
      },
      "description": "Slack channels visible to the PostHog Slack app."
    },
    "lastRefreshedAt": {
      "type": "string",
      "nullable": true,
      "description": "ISO 8601 timestamp of the last full Slack API refresh (only set on full lists, not single-channel lookups)."
    }
  },
  "required": [
    "channels"
  ]
}