Adyen · Schema

BalanceInquiryResponse

It conveys the balance and the identification of the associated payment, loyalty or stored value account. Content of the Balance Inquiry Response message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
Response object
PaymentAccountStatus object
LoyaltyAccountStatus object
PaymentReceipt array
View JSON Schema on GitHub

JSON Schema

adyen-balanceinquiryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceInquiryResponse",
  "title": "BalanceInquiryResponse",
  "type": "object",
  "description": "It conveys the balance and the identification of the associated payment, loyalty or stored value account. Content of the Balance Inquiry Response message.",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "PaymentAccountStatus": {
      "$ref": "#/components/schemas/PaymentAccountStatus"
    },
    "LoyaltyAccountStatus": {
      "$ref": "#/components/schemas/LoyaltyAccountStatus"
    },
    "PaymentReceipt": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentReceipt"
      }
    }
  },
  "required": [
    "Response"
  ]
}