Mindbody · Schema

AddAvailabilitiesResponse

Implementation of the 'AddAvailabilitiesResponse' model. Add Availabilities Response Model

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
StaffMembers array Contains information about the staff.
Errors array Contains information about the error.
View JSON Schema on GitHub

JSON Schema

public-api-v6-add-availabilities-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-add-availabilities-response-schema.json",
  "title": "AddAvailabilitiesResponse",
  "description": "Implementation of the 'AddAvailabilitiesResponse' model. Add Availabilities Response Model",
  "type": "object",
  "properties": {
    "StaffMembers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Staff1"
      },
      "description": "Contains information about the staff.",
      "example": [
        {}
      ]
    },
    "Errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiError1"
      },
      "description": "Contains information about the error.",
      "example": [
        {}
      ]
    }
  }
}