Mindbody · Schema

PaymentType

Implementation of the 'PaymentType' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Id integer The Payment Type Id used for api calls.
PaymentTypeName string Payment Type Name
Active boolean Check if Payment type is active.
Fee number Payment type fee.
View JSON Schema on GitHub

JSON Schema

public-api-v6-payment-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-payment-type-schema.json",
  "title": "PaymentType",
  "description": "Implementation of the 'PaymentType' model.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "The Payment Type Id used for api calls.",
      "example": 123456
    },
    "PaymentTypeName": {
      "type": "string",
      "description": "Payment Type Name",
      "example": "example-value"
    },
    "Active": {
      "type": "boolean",
      "description": "Check if Payment type is active.",
      "example": true
    },
    "Fee": {
      "type": "number",
      "format": "double",
      "description": "Payment type fee.",
      "example": 1.0
    }
  }
}