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