Skip to main content
After creating an appointment you may need to invite members. The following example demonstrates how this is done.
In this example, we have initially created an appointment and set certain properties of it.

Attendees

A Person entity is used for adding as a attendee to this appointment. In the latter part of the example, we have set some properties of the attendee such as AssociateId, PersonId, and SendEmail. You can create an array of ParticipantInfo as we have done above.

AppointmentMatrix

An instance of the AppointmentMatrix is created by passing the newly created appointment. You can add the attendees to the matrix by using the AddParticipant method. When the AppointmentMatrix is saved, 2 records will be added to the appointment table:
  • One corresponding to the creator of the appointment
  • One referring to the attendee
If we have added more attendees, more records will be entered into the appointment table.

See also