Daten per rest_command an pvoutput senden

Moin ich versuche Daten von meiner PV mittels rest_command von Home Assistant an PVOutput.org zu senden.

Ich habe folgendes eingestellt

in der configuration.yaml ist folgender command:

Rest Commands

rest_command:
  pvoutput_send_data:
    url: "https://pvoutput.org/service/r2/addstatus.jsp"
    method: POST
    headers:
      Content-Type: application/x-www-form-urlencoded
    payload: >
      key=mein api key
      &sid=meine system id
      &d={{ now().strftime('%Y%m%d') }}
      &t={{ now().strftime('%H%M') }}
      &v2={{ states('sensor.s10x_solar_production') | int }}
      &v4={{ states('sensor.tatsachlicher_hausverbrauch') | int }}

Dann habe ich folgende automation:

alias: PV Daten S10 SE an PVOutput senden
description: ""
triggers:
  - minutes: /5
    trigger: time_pattern
conditions: []
actions:
  - data: {}
    action: rest_command.pvoutput_send_data
mode: single

Die automation löst auch aus, aber auf pvoutput.org kommen keine daten an.

Was habe ich falsch gemacht bzw. wo liegt ein fehler vor?