MagicMirror MMM-syslog event list

Hey!
I have a working Magic Mirror with the MMM-syslog module installed. I want to create a notification from HA to the mirror. The idea is that it should act as an event list.

The problem is that I don’t know where to start.

# automations
alias: Pump startad
trigger:
  - platform: numeric_state
    entity_id: sensor.utomhus_pool_pumpgrop_current
    above: 0.1
action:
  - service: notify.pushetta
    data_template:
      title: Pumpen startad!
      message: ''
      target: ''

# request		
# http://10.0.15.239:8080/syslog?type=INFO&message=Pump%20startad!&silent=true 			

# response
# {"status":"success","payload":{"type":"INFO","message":"Pump startad!","silent":"true","timestamp":"2019-02-10T11:06:12.914Z"}}
	- service: notify.mmm_syslog
		    data_template:
		      title: Pumpen startad!
      
  - delay: '00:5:00'

Grateful if someone can help me in the right direction.