events.iterate.com

Event type

events.iterate.com/telegram/webhook-received

Raw Telegram Update, appended by the webhook door to `/integrations/telegram/{connection}` and forwarded (plus `replyHint` when the update replies to an earlier message) to routed chat/session streams. `botId` is the receiving bot's numeric id (the webhook path segment).

Payload schema

bodyRecord<string, any>

The Telegram Update object, verbatim.

botIdstring

The receiving bot's numeric id (the webhook path segment).

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 Telegram Update object, verbatim."
    },
    "botId": {
      "type": "string",
      "description": "The receiving bot's numeric id (the webhook path segment)."
    }
  },
  "required": [
    "body",
    "botId"
  ],
  "additionalProperties": {}
}