0

all. I am now working with calendar event at iPhone with Swift. I want to send an invite to a specific person (ex:person@gmail.com). There are many way to add event to my calendar, but I can't find the way to add participants(A person will be received my invite). I have read and found many documents and QA, but I think there is no option to add participants to my calendar event. Please help me with this issue. Regards. Jing.

Jing Wang
  • 1
  • 4

1 Answers1

0

You may use the Events: update method to update an event.

In the request body, supply an Events resource with the following properties:

Required Properties

  • attendees[].email - The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322.

Optional Properties

  • attendees[] - The attendees of the event. See the Events with attendees guide for more information on scheduling events with other calendar users.
  • attendees[].additionalGuests - Number of additional guests. Optional. The default is 0.
  • attendees[].displayName - The attendee's name, if available. Optional.
  • ..........

Additional reference:

Hope this helps!

Community
  • 1
  • 1
abielita
  • 13,147
  • 2
  • 17
  • 59