Hey @Anonymous
if your meeting is always titled the same and there is no other meeting, that is exactly titled the same, you can use the "Filter Query" in your action. Your Filter Query would look like this:
subject eq 'Update Reminder'
The Filter looks only for events that have this name. The result on my side:
Without filter any filter:
[
{
"subject": "Test 2",
"start": "2021-11-10T07:00:00.0000000",
"end": "2021-11-10T07:30:00.0000000",
"startWithTimeZone": "2021-11-10T07:00:00+00:00",
"endWithTimeZone": "2021-11-10T07:30:00+00:00",
[...]
},
{
"subject": "Test 2 Other",
"start": "2021-11-11T07:00:00.0000000",
"end": "2021-11-11T07:30:00.0000000",
"startWithTimeZone": "2021-11-11T07:00:00+00:00",
"endWithTimeZone": "2021-11-11T07:30:00+00:00",
[...]
}
]
With filter "subject eq 'Test 2'":
[
{
"subject": "Test 2",
"start": "2021-11-10T07:00:00.0000000",
"end": "2021-11-10T07:30:00.0000000",
"startWithTimeZone": "2021-11-10T07:00:00+00:00",
"endWithTimeZone": "2021-11-10T07:30:00+00:00",
[...]
}
]
(I shortened the output to have a better overview)
Best regards
Marvin
If you like this post, give a Thumbs up. If it solved your request, Mark it as a Solution to enable other users to find it.