Adyen · Schema

CardAcquisitionRequest

It conveys Information related to the payment and loyalty cards to read and analyse. This message pair is usually followed by a message pair (e.g. payment or loyalty) which refers to this Card Acquisition message pair. Content of the Card Acquisition Request message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
SaleData object
CardAcquisitionTransaction object
View JSON Schema on GitHub

JSON Schema

adyen-cardacquisitionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardAcquisitionRequest",
  "title": "CardAcquisitionRequest",
  "type": "object",
  "description": "It conveys Information related to the payment and loyalty cards to read and analyse. This message pair is usually followed by a message pair (e.g. payment or loyalty) which refers to this Card Acquisition message pair. Content of the Card Acquisition Request message.",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "CardAcquisitionTransaction": {
      "$ref": "#/components/schemas/CardAcquisitionTransaction"
    }
  },
  "required": [
    "SaleData",
    "CardAcquisitionTransaction"
  ]
}