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