events.iterate.com

Event type

events.iterate.com/slack/thread-route-configured

Declares that a Slack thread timestamp maps to a stream path. The Slack router reduces this into its routing table on `/integrations/slack/{connection}`.

Payload schema

channelstring

Slack channel id of the routed thread.

threadTsstring

Slack thread timestamp of the routed thread.

streamPathstring

Stream path future webhooks for this thread forward to.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "channel": {
      "type": "string",
      "description": "Slack channel id of the routed thread."
    },
    "threadTs": {
      "type": "string",
      "description": "Slack thread timestamp of the routed thread."
    },
    "streamPath": {
      "type": "string",
      "description": "Stream path future webhooks for this thread forward to."
    }
  },
  "required": [
    "channel",
    "threadTs",
    "streamPath"
  ]
}