_setMeetingDate

Sets the meeting date of one or more Appointments.

Parameters

ids

An array of Appointment IDs you wish to modify.

Example

FM_api('Appointments_setMeetingDate',[
    'ids'=>["592001","592002"],
    'date'=>'2024-08-15'
    ]
);

Results

On Success

{"ok":"1"}

On Failure

If the "ids" parameter is not set:

{"error":"missing or invalid parameter: ids"}

Last updated