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