Hello, I’m trying to add attendees with a microsoft calendar api call. (apparently the only way to not send notifications every time an attendee is added to the event).
I first used an array aggregator but the output format doesn’t match. Now I’m trying with a json aggregator. It’s pretty close to the format needed but still doesn’t work. I
What I get : { "attendees": [ { "Name": "Paul", "Email": "test1@gmail.com" }, ... ] }
What I need :
{
"attendees": [
{
"emailAddress": {
"address": "test1@gmail.com",
"name": "Paul"
},
"type": "required"
},
...
]
}
This workflow is supposed to add multiple attendees (existing and new ones)
Ajouter nouveaux invités à évènements existants.blueprint (1).json (15.1 KB)