Mark
My feedback
1 result found
-
2 votes
An error occurred while saving the comment An error occurred while saving the comment Mark commentedThanks for this info! This helps me understand how this API call works.
In this case, I want the second option - sending email to everyone registered for an event, and not the wait list. (we're sending a post-event feedback email, and manually sending it each time)
Unfortunately, I still don't quite have the body right. Using event 1000 as an example, I've tried
{
"Subject": "test email",
"Body": "test email",
"Recipients": [
{
"Type": "EventAttendees_All",
}
],
"EventId": 1000
}and
{
"Subject": "test email",
"Body": "test email",
"Type": "EventAttendees_All",
"EventId": 1000
}But still getting a 400. What should I be sending instead?
Mark shared this idea ·
That worked, thanks!