events.iterate.com

Event type

events.iterate.com/slack/webhook-received

Raw Slack Events API callback body, appended by the webhook route to `/integrations/slack/{connection}` and forwarded unchanged to routed thread streams.

Payload schema

bodyRecord<string, any>

The Slack callback body, verbatim as Slack delivered it.

Additional properties beyond the listed fields are allowed.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "body": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {},
      "description": "The Slack callback body, verbatim as Slack delivered it."
    }
  },
  "required": [
    "body"
  ],
  "additionalProperties": {},
  "description": "The webhook envelope; extra keys (headers, team id) ride along untouched."
}