Mindbody · Schema

UploadClientDocumentRequest

Implementation of the 'UploadClientDocumentRequest' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
ClientId string The RSSID of the client for whom the document is to be uploaded.
File object Contains information about the file to be uploaded.
View JSON Schema on GitHub

JSON Schema

public-api-v6-upload-client-document-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-upload-client-document-request-schema.json",
  "title": "UploadClientDocumentRequest",
  "description": "Implementation of the 'UploadClientDocumentRequest' model.",
  "type": "object",
  "properties": {
    "ClientId": {
      "type": "string",
      "description": "The RSSID of the client for whom the document is to be uploaded.",
      "example": "example-value"
    },
    "File": {
      "$ref": "#/components/schemas/ClientDocument",
      "description": "Contains information about the file to be uploaded."
    }
  }
}