Add Appointment Credits
Required Arguments
Available Arguments
Available Fields
Appointment Credit
Field Name
Type
Description
Example

Last updated

Last updated
mutation {
addAppointmentCredits(
member: "TWVtYmVyOjVlZDk5MjMyLWNhMTMtNGE2NS05MmIyLWZjMDk4ZjgyOWUwNA=="
appointmentType: "QXBwb2ludG1lbnRUeXBlOjU="
increase: 3
decrease: 0
) {
success
message
credits {
id
appointmentType {
id
title
}
value
}
}
}{
"data": {
"addAppointmentCredits": {
"success": true,
"message": "Appointment Credits were updated",
"credits": {
"id": "QXBwb2ludG1lbnRDcmVkaXQ6Nw==",
"appointmentType": {
"id": "QXBwb2ludG1lbnRUeXBlOjU=",
"title": "Onboarding call "
},
"value": 3
}
}
}
}