Mindbody · JSON Structure

Public Api V6 Update Availability Request Structure

Implementation of the 'UpdateAvailabilityRequest' model. This is the update avaialability request coming DTO

Type: object Properties: 9
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

UpdateAvailabilityRequest is a JSON Structure definition published by Mindbody, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AvailabilityIds PublicDisplay DaysOfWeek ProgramIds StartDateTime EndDateTime LocationId UnavailableDescription Test

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-structure/public-api-v6-update-availability-request-structure.json",
  "name": "UpdateAvailabilityRequest",
  "description": "Implementation of the 'UpdateAvailabilityRequest' model. This is the update avaialability request coming DTO",
  "type": "object",
  "properties": {
    "AvailabilityIds": {
      "type": "array",
      "items": {
        "type": "int32"
      },
      "description": "Unique IDs for the availabilities or unavailabilities.",
      "example": [
        1
      ]
    },
    "PublicDisplay": {
      "$ref": "#/components/schemas/PublicDisplayEnum",
      "description": "Choice that decides whether the availablity should be publicly visible, masked or hidden."
    },
    "DaysOfWeek": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DaysOfWeekEnum"
      },
      "description": "The days of week to update the availabilities or unavailabilities.<br /> Default: **All**",
      "example": [
        {}
      ]
    },
    "ProgramIds": {
      "type": "array",
      "items": {
        "type": "int32"
      },
      "description": "The program Id to be set for the availabilities. Default: **All**",
      "example": [
        1
      ]
    },
    "StartDateTime": {
      "type": "datetime",
      "description": "The start date and time for the availabilities or unavailabilities.",
      "example": "2026-05-28T14:30:00Z"
    },
    "EndDateTime": {
      "type": "datetime",
      "description": "The end date and time for the availabilities or unavailabilities.",
      "example": "2026-05-28T14:30:00Z"
    },
    "LocationId": {
      "type": "int32",
      "description": "The location Id to be updated for the provided availability Ids.",
      "example": 123456
    },
    "UnavailableDescription": {
      "type": "string",
      "description": "The description for unavailability.",
      "example": "Example note for Mindbody Public API."
    },
    "Test": {
      "type": "boolean",
      "description": "When `true`, the request ensures that its parameters are valid without affecting real data. When ``false`, the request performs as intended and may affect live client data. Default: **false**",
      "example": true
    }
  }
}