Api.prototype.leaveChat = function (chatId) {
  return yarl.post(this.url + 'leaveChat', { body: {
    chat_id: chatId
  }, json: true });
};