the trigger condition a problem. I’m not asking about the choose conditions. Why is that there? the trigger condition in an automation is checked and enforced. So this condition you have means it will only allow that one person. If the user_id is not that one, the automation stops.
get rid of the trigger condition… keep the choose conditions
alias: Ruimte1_nfctag
description: ""
trigger:
- platform: event
event_type: tag_scanned
context: {}
event_data: {}
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: "{{ this.context.user_id == '63ae2011ba54413ea0df17a78f6b0f7a' }}"
sequence:
- service: notify.mobile_app_gsm_x
data:
title: test
message: x heeft de tag in ruimte 1 gescanned
- conditions:
- condition: template
value_template: >-
{{ trigger.context.user_id == '7ed612d37b704e1cb33004322b946082'
}}
sequence:
- service: notify.mobile_app_gsm_x
...