TeleWellness Portal
  • Introduction
  • HELPFUL RESOURCES
    • Getting Started
    • FAQ
      • Appointments
      • Meal Plan
  • User Management
    • Roles and Permissions
    • Manage Coaches
      • Coach tab
        • Register a new coach
          • Assign Members
        • Edit an existing coach
      • Calendar tab
        • Appointment Types
        • Appointment Alerts
      • Note Templates tab
    • Manage Members
      • Create a new member
      • Edit member's information
      • Filter members
  • Using the TeleWellness Portal
    • Login and logout to the Portal
    • Navigating the TeleWellness Portal
      • Home
      • Dashboard
      • Admin Dashboard
      • Coach Dashboard
        • Progress Tab
          • Filtering the information
          • Checking the user’s streak progress
          • Checking the user's activities progress
          • Showing the food log history
          • Checking the user's recap questions
          • Checking the user's weight log history
          • Showing user’s program journey
          • Checking user’s water intake history
        • Meal Plan tab
        • Notes tab
        • Appointments tab
        • Lab Tests tab
        • Wellness Plans tab
      • Messages
      • Meal Plans
        • Manage Meal Plans
          • From Scratch
          • Smart Meal Plan
      • Scheduling
      • Wellness Plan
        • Manage Protocols
        • Manage Wellness Plan Templates
    • Note Templates
  • API Reference
    • Generate Authorization Token
    • Appointments
      • Appointment Types
      • Add Appointment Credits
    • Coaches
      • Coach List
      • Update a Coach
      • Create a Coach
      • Invite Coach
    • Members
      • Member List
      • Members List
      • Program List
      • Update member's program
      • Assign Coach to Member
    • Lab Test Reports
      • Lab Test Report List
      • Create a Lab Test Report
      • Update Lab Test Report
      • Delete a Lab Test Report
    • Wellness Plans
      • Create a Supplement Plan for Member
      • Update Member Supplement
      • List Member Supplement Plans
      • Delete Member Supplement Plan
Powered by GitBook
On this page
  • Available Fields
  • Example
  1. API Reference
  2. Appointments

Appointment Types

PreviousAppointmentsNextAdd Appointment Credits

Last updated 1 year ago

Use the appointmentTypes to get the information of all appointments created in the

Available Fields

Field Name

Type

Description

id

ID

Appointment unique ID

title

String

Appointment title

createdAt

DateTime

Date and time when the appointment is created.

updatedAt

DateTime

Date and time when the appointment is updated.

numberOfMember

Int

Number of members set in the appointment.

durationMin

Int

Appointment duration. Expressed in minutes.

contactType

CalendarContactType

Appointment contact type. Possible Values: "VIDEO_CALL", "PHONE_CALL", "ZOOM", "GOOGLE_MEET"

Example

{
  appointmentTypes {
    types {
      id
      title
      createdAt
      updatedAt
      numberOfMember
      durationMin
      contactType
      coachesPool{
        name
        email
      }
    }
  }
}
{
  "data": {
    "appointmentTypes": {
      "types": [
        {
          "id": "QXBwb2ludG1lbnRUeXBlOjU=",
          "title": "Onboarding call ",
          "createdAt": "2022-01-28T21:07:46.085118+00:00",
          "updatedAt": "2022-02-07T15:02:40.569326+00:00",
          "numberOfMember": 2,
          "durationMin": 30,
          "contactType": [
            "VIDEO_CALL",
            "PHONE_CALL",
            "ZOOM",
            "GOOGLE_MEET"
          ],
          "coachesPool": []
        },
        {
          "id": "QXBwb2ludG1lbnRUeXBlOjM=",
          "title": "Coaching Support Call",
          "createdAt": "2022-01-10T21:40:04.947327+00:00",
          "updatedAt": "2022-01-11T13:42:21.870484+00:00",
          "numberOfMember": 2,
          "durationMin": 20,
          "contactType": [
            "ZOOM",
            "GOOGLE_MEET"
          ],
          "coachesPool": []
        },
        {
          "id": "QXBwb2ludG1lbnRUeXBlOjI=",
          "title": "Initial call",
          "createdAt": "2021-12-13T15:45:21.587646+00:00",
          "updatedAt": "2021-12-13T15:45:21.587688+00:00",
          "numberOfMember": 1,
          "durationMin": 30,
          "contactType": [
            "ZOOM",
            "VIDEO_CALL"
          ],
          "coachesPool": []
        }
      ]
    }
  }
}

Within the TeleWellness Portal, the appointment list is displayed as follows:

Calendar tab.