Api.prototype.getChatAdministrators = function (chatId) {
  return yarl.get(this.url + 'getChatAdministrators', { query: {
    chat_id: chatId
  }, json: true });
};