startOnSiteJobsAppointmentReschedulingSession
Start the rescheduling process for an existing on-site jobs appointment.
Arguments
Optional new comments for the appointment (will override the existing comment).
The ID of an existing appointment to reschedule.
Whether to override appointment rescheduling check warnings. Defaults to False.
Returns
StartOnSiteJobsAppointmentReschedulingSessionStart the rescheduling process for an existing on-site jobs appointment.
Possible Errors
Allowed Viewers
Required Permissions
Can update on site jobs appointmentQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation StartOnSiteJobsAppointmentReschedulingSession(
$appointmentComments: String,
$appointmentIdToReschedule: UUID!,
$overrideAppointmentCheckWarnings: Boolean
) {
startOnSiteJobsAppointmentReschedulingSession(
appointmentComments: $appointmentComments,
appointmentIdToReschedule: $appointmentIdToReschedule,
overrideAppointmentCheckWarnings: $overrideAppointmentCheckWarnings
) {
appointmentReschedulingSessionId
}
}
Variables
{
"appointmentComments": "attorney-city-month-collection-evening",
"appointmentIdToReschedule": "b3df44a4-7467-437a-8b63-e0efb62ac1fe",
"overrideAppointmentCheckWarnings": true
}
Response
{
"data": {
"startOnSiteJobsAppointmentReschedulingSession": {
"appointmentReschedulingSessionId": "1d3b993f-7949-4eab-bf1a-355e526eb523"
}
}
}