Mindbody · Schema

UpdateContactLogType

Implementation of the 'UpdateContactLogType' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Id integer The ID of the contact log type to update the subtypes of.
SubTypes array The subtype IDs that are to be added to the contact log.
View JSON Schema on GitHub

JSON Schema

public-api-v6-update-contact-log-type-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-update-contact-log-type-schema.json",
  "title": "UpdateContactLogType",
  "description": "Implementation of the 'UpdateContactLogType' model.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "The ID of the contact log type to update the subtypes of.",
      "example": 123456
    },
    "SubTypes": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "The subtype IDs that are to be added to the contact log.",
      "example": [
        1
      ]
    }
  }
}