Mindbody · Schema

GetStaffAppointmentsResponse

Implementation of the 'GetStaffAppointmentsResponse' model. Get Staff Appointments Response Model

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Appointments array Contains information about appointments and their details.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-staff-appointments-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-get-staff-appointments-response-schema.json",
  "title": "GetStaffAppointmentsResponse",
  "description": "Implementation of the 'GetStaffAppointmentsResponse' model. Get Staff Appointments Response Model",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Appointments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Appointment"
      },
      "description": "Contains information about appointments and their details.",
      "example": [
        {}
      ]
    }
  }
}