public
|
updateAppointment(
string $sUserPublicId,
string $sCalendarId,
string $sEventId,
string $sAttendee,
string $sAction,
): bool
Processing response to event invitation. [Aurora only.](http://dev.afterlogic.com/aurora)
Parameters
$sCalendarId |
Calendar ID
|
$sEventId |
Event ID
|
$sAttendee |
Attendee identified by email address
|
$sAction |
Appointment actions. Accepted values:
- "ACCEPTED"
- "DECLINED"
- "TENTATIVE"
|
|
#
|
public
|
appointmentAction(
int|string $sUserPublicId,
string $sAttendee,
string $sAction,
string $sCalendarId,
string $sData,
bool $bExternal = false,
): bool
Allows for responding to event invitation (accept / decline / tentative). [Aurora only.](http://dev.afterlogic.com…
Allows for responding to event invitation (accept / decline / tentative). Aurora only.
Parameters
$sUserPublicId |
Account object
|
$sAttendee |
Attendee identified by email address
|
$sAction |
Appointment actions. Accepted values:
- "ACCEPTED"
- "DECLINED"
- "TENTATIVE"
|
$sCalendarId |
Calendar ID
|
$sData |
ICS data of the response
|
$bExternal |
If true, it is assumed attendee is external to the system
|
|
#
|