Mindbody · Schema

UpdateClientServiceRequest

Implementation of the 'UpdateClientServiceRequest' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
ServiceId integer The ID of the service to update.
ActiveDate string The date that the service became active.
ExpirationDate string The date that the service is to expire.
Count integer The number of client service sessions to update.
Test boolean When `true`, indicates that input information is to be validated, but not committed.
When `false` or omitted, the database is affected.
Default: **false**
View JSON Schema on GitHub

JSON Schema

public-api-v6-update-client-service-request-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-client-service-request-schema.json",
  "title": "UpdateClientServiceRequest",
  "description": "Implementation of the 'UpdateClientServiceRequest' model.",
  "type": "object",
  "properties": {
    "ServiceId": {
      "type": "integer",
      "format": "int32",
      "description": "The ID of the service to update.",
      "example": 123456
    },
    "ActiveDate": {
      "type": "string",
      "format": "date-time",
      "description": "The date that the service became active.",
      "example": "2026-05-28T14:30:00Z"
    },
    "ExpirationDate": {
      "type": "string",
      "format": "date-time",
      "description": "The date that the service is to expire.",
      "example": "2026-05-28T14:30:00Z"
    },
    "Count": {
      "type": "integer",
      "format": "int32",
      "description": "The number of client service sessions to update.",
      "example": 10
    },
    "Test": {
      "type": "boolean",
      "description": "When `true`, indicates that input information is to be validated, but not committed.<br /> When `false` or omitted, the database is affected.<br /> Default: **false**",
      "example": true
    }
  }
}