Przelewy24 · Schema

DispatchArrayObject

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
date string Date and time of dispatch
orderId integer Identifier of dispatched transaction
partner_id integer Submerchant's id. The funds are transferred to this sumberchant
items array Array of product data objects
amount integer Amount of transferred funds, in polish groshes
View JSON Schema on GitHub

JSON Schema

DispatchArrayObject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DispatchArrayObject",
  "properties": {
    "date": {
      "type": "string",
      "description": "Date and time of dispatch",
      "example": "2020-03-27 15:18:38"
    },
    "orderId": {
      "type": "integer",
      "format": "int64",
      "description": "Identifier of dispatched transaction"
    },
    "partner_id": {
      "type": "integer",
      "description": "Submerchant's id. The funds are transferred to this sumberchant"
    },
    "items": {
      "type": "array",
      "description": "Array of product data objects"
    },
    "amount": {
      "type": "integer",
      "description": "Amount of transferred funds, in polish groshes"
    }
  }
}