Adyen · JSON Structure

Checkout Checkout Order Response Structure

CheckoutOrderResponse schema from Adyen API

Type: object Properties: 6 Required: 1
PaymentsFinancial ServicesFintech

CheckoutOrderResponse is a JSON Structure definition published by Adyen, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

amount expiresAt orderData pspReference reference remainingAmount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/checkout-checkout-order-response-structure.json",
  "description": "CheckoutOrderResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "amount": {
      "description": "The initial amount of the order.",
      "$ref": "#/components/schemas/Amount"
    },
    "expiresAt": {
      "description": "The expiry date for the order.",
      "type": "string"
    },
    "orderData": {
      "description": "The encrypted order data.",
      "type": "string"
    },
    "pspReference": {
      "description": "The `pspReference` that belongs to the order.",
      "type": "string"
    },
    "reference": {
      "description": "The merchant reference for the order.",
      "type": "string"
    },
    "remainingAmount": {
      "description": "The updated remaining amount.",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "required": [
    "pspReference"
  ],
  "name": "CheckoutOrderResponse"
}