rogro82/hass-variables

TextField IFTTT

Closed this issue · 0 comments

Hi,

I want to use variable in Hassio to receive a TextField to IFTTT with an Applet with Google Assistant in Trigger with text ingredient ($).

I write this in Body in IFTTT:

{ "action": "call_service", "service": "var.set", "entity_id": "var.tts_bureau", "tts_bureau": "{{TextField}}" }

And I write this in Automatisation in Hassio:

  • id: '1552841249457'
    alias: Webhook TTS Bureau
    trigger:
    • event_data:
      action: call_service
      entity_id: var.tts_bureau
      service: var.set
      event_type: ifttt_webhook_received
      platform: event
      action:
    • data:
      value_template: '{{ trigger.event.data.tts_bureau }}'
      entity_id: var.tts_bureau
      service: var.set

Why the variable statut is {{ trigger.event.data.tts_bureau }} and not the TextField?
Hassio don't change {{ trigger.event.data.tts_bureau }} to the good TextField...

Thank you for your help