startOnSiteJobsTimeslotPickingSession
Start a booking session to pick a timeslot for an existing unscheduled on-site jobs appointment.
Arguments
The ID of the appointment that requires a timeslot.
Returns
StartOnSiteJobsTimeslotPickingSessionStart a booking session to pick a timeslot for an existing unscheduled on-site jobs appointment.
Possible Errors
Allowed Viewers
Required Permissions
Can create on site jobs appointmentsQuery 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 StartOnSiteJobsTimeslotPickingSession($appointmentId: UUID!) {
startOnSiteJobsTimeslotPickingSession(appointmentId: $appointmentId) {
appointmentBookingSessionId
}
}
Variables
{
"appointmentId": "cfdc3a81-c2eb-4580-a522-eeb32293c61e"
}
Response
{
"data": {
"startOnSiteJobsTimeslotPickingSession": {
"appointmentBookingSessionId": "50bbd9b0-3693-4452-a439-e76dfd26770a"
}
}
}