Mindbody · Schema

GetGiftCardBalanceResponse

Implementation of the 'GetGiftCardBalanceResponse' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
BarcodeId string The gift card's barcode ID.
RemainingBalance number The gift card's remaining balance.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-gift-card-balance-response-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-get-gift-card-balance-response-schema.json",
  "title": "GetGiftCardBalanceResponse",
  "description": "Implementation of the 'GetGiftCardBalanceResponse' model.",
  "type": "object",
  "properties": {
    "BarcodeId": {
      "type": "string",
      "description": "The gift card's barcode ID.",
      "example": "example-value"
    },
    "RemainingBalance": {
      "type": "number",
      "format": "double",
      "description": "The gift card's remaining balance.",
      "example": 49.99
    }
  }
}