🌙

getChat

getChat

Получить информацию о чате по ID.

GET https://api.kodari.ru/msg/bot.php?method=getChat&chat_id=123
Authorization: Bearer bot_ВАШ_ТОКЕН

Параметры

ПараметрТипОбяз.Описание
chat_idintID чата

Успешный ответ

{
  "ok": true,
  "result": {
    "id": 123,
    "type": "group",
    "title": "Название группы",
    "username": "mygroup",
    "description": "Описание",
    "member_count": 42,
    "slow_mode_delay": 0,
    "default_permissions": {
      "send_messages": true,
      "send_media": true,
      "embed_links": true,
      "invite_users": true,
      "pin_messages": false,
      "change_info": false
    }
  }
}

Ошибки

КодОписание
400chat_id отсутствует
403Бот не является участником чата
404Чат не найден
17 просмотров