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": {}
}