createOnSiteJobsAppointmentWithoutBooking
Create an Appointment on Kraken without making a booking via the booking vendor system. This is typically used by booking vendors to inform Kraken about appointments created on their system.
Arguments
The input objects required to create an Appointment on Kraken without making a booking.
Returns
CreateOnSiteJobsAppointmentWithoutBookingCreate an Appointment on Kraken without making a booking via the booking vendor system. This is typically used by booking vendors to inform Kraken about appointments created on their system.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-13010: No booking adapter found for agent.
- KT-CT-13018: Unable to record cancellation_category/cancellation_sub_category.
- KT-CT-13021: Invalid job type.
- KT-CT-13027: Booking system error occurred.
- KT-CT-13032: Request does not exist.
- KT-CT-13034: Appointment already exists for this request.
- KT-CT-13035: Request is inactive.
- KT-CT-13039: Cancellation fields require CANCELLED status.
- KT-CT-13044: Failed to update appointment slot.
- KT-CT-13050: Cannot provide both supply_point_identifier_to_market_name_mapping and supply_point_internal_id when creating assets.
- KT-CT-13051: Supply point not found when creating assets.
- KT-CT-13052: Multiple supply points found when creating assets.
- KT-CT-13062: Datetime field must be timezone-aware.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can create on site jobs appointments without bookingQuery 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 CreateOnSiteJobsAppointmentWithoutBooking($input: OnSiteJobsCreateAppointmentInput!) {
createOnSiteJobsAppointmentWithoutBooking(input: $input) {
onSiteJobsAppointment {
...OnSiteJobsAppointmentTypeFragment
}
}
}
Variables
{
"input": OnSiteJobsCreateAppointmentInput
}
Response
{
"data": {
"createOnSiteJobsAppointmentWithoutBooking": {
"onSiteJobsAppointment": OnSiteJobsAppointmentType
}
}
}