Przelewy24 · Schema

Batch

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
type string Possible values: batch, refund, transaction
amount integer Amount
currency string Currency
details object Array of objects depended of type
View JSON Schema on GitHub

JSON Schema

Batch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Batch",
  "properties": {
    "type": {
      "type": "string",
      "description": "Possible values: batch, refund, transaction"
    },
    "amount": {
      "type": "integer",
      "description": "Amount"
    },
    "currency": {
      "type": "string",
      "description": "Currency",
      "example": "PLN"
    },
    "details": {
      "description": "Array of objects depended of type",
      "items": {
        "$ref": "#/components/schemas/BatchObject"
      }
    }
  }
}