events.iterate.com

Event type

events.iterate.com/slack/created

Birth certificate for this Slack webhook router.

Payload schema

configobject

Router configuration fixed at birth.

connectionstring

Named Slack connection (workspace installation) this router serves; qualifies the `/agents/slack/{connection}/…` thread paths it creates.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "config": {
      "type": "object",
      "properties": {
        "connection": {
          "type": "string",
          "description": "Named Slack connection (workspace installation) this router serves; qualifies the `/agents/slack/{connection}/…` thread paths it creates."
        }
      },
      "required": [
        "connection"
      ],
      "description": "Router configuration fixed at birth."
    }
  },
  "required": [
    "config"
  ]
}