Chat Module Catalog Events
List of Catalogs
| Catalog | Description |
|---|---|
| Group Catalog | Catalog representing the information about the managed public chat groups |
| Bot Catalog | Catalog keeping tabs on the managed bots |
"Required Catalog Fields"
Chat module is API usage only. To send in the data, please refer to the APIs available in Main Log Format.
Group Catalog
Below are the Group Catalog values.
Overview
| Param | Usability | Format | Description |
|---|---|---|---|
| id | REQUIRED | STRING | Unique id for a chat group |
| name | REQUIRED | STRING | Name of the chat group |
| description | OPTIONAL | STRING | Group's description in bio. |
| timezone | OPTIONAL | STRING | Timezone for which the group is currently in. |
Usage
{
"data": [
{
"id": "4bbaf4a2-1136-4888-ba9f-1e205ea1bed9",
"type": "group",
"kv": {
"name": "Estudiantes de Lorem ipsum 🐣🌃👢💍🌰🍚",
"description": "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.",
"timezone": "+01:00"
}
}
]
}
Bot Catalog
Below are the Bot Catalog values.
Overview
| Param | Usability | Format | Description |
|---|---|---|---|
| id | REQUIRED | STRING | Unique id for the bot |
| name | REQUIRED | STRING | Name of the bot |
| description | OPTIONAL | STRING | Bot's info in bio |
| timezone | OPTIONAL | STRING | Timezone for which the bot presumably operates from |
Usage
{
"data": [
{
"id": "913c37fd-341b-42d5-9814-0a061c45617e",
"type": "bot",
"kv": {
"name": "Dolor sit amet",
"description": "Lorem Ipsum archive custodian",
"timezone": "+01:00"
}
}
]
}