Input select option with IFTTT

Can anyone help me with IFTTT. Turn on Switches over IFTTT is working fine. But my question is how can I use the service input_select.select_option. I have tried this in IFTTT webhook body:
{ "action": "call_service", "service": "input_select.select_option", "entity_id": "input_select.input_select_moodlite_patterns", "option": "Fixed" }
But it wont work. Thats my HA automation:
- id: ifttt
alias: ifttt
trigger:
platform: event
event_type: ifttt_webhook_received
event_data:
action: call_service
action:
service_template: ‘{{ trigger.event.data.service }}’
data_template:
entity_id: ‘{{ trigger.event.data.entity_id }}’

You need to format that YAML code so we can read it properly.