Skip to main content

Arguments

appointmentComments : String

Optional new comments for the appointment (will override the existing comment).

appointmentIdToReschedule : UUID! required

The ID of an existing appointment to reschedule.

overrideAppointmentCheckWarnings : Boolean

Whether to override appointment rescheduling check warnings. Defaults to False.

Returns

StartOnSiteJobsAppointmentReschedulingSession

Start the rescheduling process for an existing on-site jobs appointment.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can update on site jobs appointment

Query Complexity

1

Examples

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.

Query

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" } } }