events.iterate.com

Event type

events.iterate.com/slack-agent/created

Birth certificate for the Slack facet on an agent stream.

Payload schema

configobject

The one Slack thread this agent stream is bound to.

connectionstring

Named Slack connection the facet posts through.

channelstring

Slack channel id of the bound thread.

threadTsstring

Slack thread timestamp of the bound thread.

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 the facet posts through."
        },
        "channel": {
          "type": "string",
          "description": "Slack channel id of the bound thread."
        },
        "threadTs": {
          "type": "string",
          "description": "Slack thread timestamp of the bound thread."
        }
      },
      "required": [
        "connection",
        "channel",
        "threadTs"
      ],
      "description": "The one Slack thread this agent stream is bound to."
    }
  },
  "required": [
    "config"
  ]
}