Shoppinglist automation templating not working

Hi, I’m making a automation to add products to the shopping list via a webhook.
I made the automation below. But when I’m looking in at the shopping list I see hallo {{trigger.json.name}}.
It looks like the template part is not generated. Does anybody also encounter this?

I tried the name in the data in multiple ways: single quotes, double quotes, no quotes.
Also when I added another sensor in the name it also didn’t works

- id: '1580845777631'
  alias: 'Boodschappenlijst: Voeg product toe'
  description: ''
  trigger:
  - platform: webhook
    webhook_id: webhook_id
  condition: []
  action:
  - data:
      name: 'hallo {{trigger.json.name}}'
    service: shopping_list.add_item

You need to use data_template: instead of data:. Rule 1 of templating

Hi @Tediore,

I feel so stupid…
I used the automation wizzard in the configuration.

Thank you!