Coach Availability

Use the coachAvailability query to retrieve a list of available time slots for scheduling a meeting with a coach (or multiple coaches), based on the specified appointment type.

Arguments

Argument
Type
Description

appointmentType

ID!

ID of the appointment type.

start

DateTime!

Set start date to retrieve results. YYYY-MM-DDT hh:mm:ss

end

DateTime!

Set end date to retrieve results. YYYY-MM-DDT hh:mm:ss

coaches

[ID]

ID of the coach or coaches.

Available Fields

Field

Type

Description

start

DateTime!

Start date and time of the available block YYYY-MM-DDT hh:mm:ss

end

DateTime!

End date and time of the available blockYYYY-MM-DDT hh:mm:ss

coaches

[Coach]

Coaching portal Coach.

Example

query{
  coachAvailability(
    appointmentType:"QXBwb2ludG11brRUeXBlOjEwNTc="
    start:"2025-09-18"
    end:"2025-10-15"
  ){
    start
    end
    coaches{
      name
      email
      id
    }
}
}

Last updated

Was this helpful?