Data Elements

Oops, it seems that you need to place a table or a macro generating a table within the Table Filter macro.

The table is being loaded. Please wait for a bit ...


KeyFormatCNDDescriptionBeschreibung
1

deliveryEmail

string

O

For Electronic delivery, the email address to which the merchandise was delivered

Für elektronische Lieferung die E-Mail-Adresse, an die die Ware geliefert wurde
2

deliveryTimeframe

string

O

Indicates the merchandise delivery timeframe

Gibt den Zeitrahmen für die Warenlieferung an
3

giftCardAmount

integer

O

For prepaid or gift card purchase, the purchase amount total of prepaid or gift cards in smallest currency unit

Für den Kauf von Prepaid- oder Geschenkkarten der Gesamtkaufbetrag der Preipaid- oder Geschenkkarten in der kleinsten Währungseinheit
4

giftCardCount

integer

O

For prepaid or gift card purchase, total count of individual prepaid or gift cards/codes purchased

Für den Kauf von Prepaid- oder Geschenkkarten die Gesamtanzahl der gekauften einzelnen Prepaid- oder Geschenkkarten/-Codes
5

giftCardCurr

string

O

For prepaid or gift card purchase, ISO 4217 three-digits numeric currency code of the gift card, e.g. 978

Für den Kauf von Prepaid- oder Geschenkkarten der dreistellige Währungscode der Geschenkkarte numerisch gemäß ISO 4217, z.B. 978
6

preOrderDate

string

O

For a pre-ordered purchase, the expected date that the merchandise will be available (YYYY-MM-DD)

Für einen vorbestellten Kauf das erwartete Datum, an dem die Ware verfügbar sein wird (JJJJ-MM-TT)
7

preOrderPurchaseIndicator

boolean

O

Indicates whether customer is placing an order for merchandise with a future availability or release date

Gibt an, ob der Kunde eine Bestellung für eine Ware mit zukünftiger Verfügbarkeit oder zukünftigem Veröffentlichungsdatum aufgibt
8

reorderItemsIndicator

boolean

O

Indicates whether the customer is reordering previously purchased merchandise

Gibt an, ob der Kunde eine zuvor bereits gekaufte Ware erneut bestellt
9

shippingAddressIndicator

string

O

Indicates shipping method chosen for the transaction. If one or more items are included in the sale, use the Shipping Indicator code for the physical goods, or if all digital goods, use the Shipping Indicator code that describes the most expensive item.

Gibt die für die Transaktion gewählte Liefermethode an. Wenn in dem Verkauf einer oder mehrere Artikel enthalten sind, verwenden Sie den Code Shipping Indicator für die physischen Waren, oder wenn alles digitale Güter sind, verwenden Sie den Code Shipping Indicator zur Beschreibung des teuersten Artikels.

Schema

(info) BASEURL= https://www.computop-paygate.com/schemas

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/merchantRisk.json",
    "title": "merchantRisk",
    "description": "Merchant Risk Information",
    "type": "object",
    "properties": {
        "deliveryEmail": {
            "type": "string",
            "maxLength": 254,
            "format": "idn-email",
            "description": "For Electronic delivery, the email address to which the merchandise was delivered."
        },
        "deliveryTimeframe": {
            "type": "string",
            "enum": ["electronicDelivery", "sameDayDelivery", "nextDayDelivery", "twoOrMoreDaysDelivery"]
        },
        "giftCardAmount": {
            "type": "integer",
            "maximum": 999999999999
        },
        "giftCardCount": {
            "type": "integer",
            "maximum": 99,
            "description": "Number of prepaid or gift cards used for this purchase."
        },
        "giftCardCurr": {
            "type": "string",
            "minLength": 3,
            "maxLength": 3,
            "description": "ISO 4217 three-digits numeric currency code of the gift card, e.g. 978."
        },
        "preOrderDate": {
            "type": "string",
            "format": "full-date",
            "description": "The expected date that the merchandise will be available in format YYYY-MM-DD."
        },
        "preOrderPurchaseIndicator": {
            "type": "boolean",
            "description": "Indicates whether customer is placing an order for merchandise with a future availability or release date."
        },
        "reorderItemsIndicator": {
            "type": "boolean",
            "description": "Indicates whether the customer is reordering previously purchased merchandise."
        },
        "shippingAddressIndicator": {
            "type": "string",
            "enum": [
                "shipToBillingAddress",
                "shipToVerifiedAddress",
                "shipToNewAddress",
                "shipToStore",
                "digitalGoods",
                "noShipment",
                "other"
            ],
            "description": "Indicates shipping method chosen for the transaction. If one or more items are included in the sale, use the Shipping Indicator code for the physical goods, or if all digital goods, use the Shipping Indicator code that describes the most expensive item."
        }  
    },
    "additionalProperties": false
}

Sample

{
    "deliveryEmail": "joe.bloggs@acme.com",
    "deliveryTimeframe": "twoOrMoreDaysDelivery",
    "giftCardAmount": 5000,
    "giftCardCount": 2,
    "giftCardCurr": "978",
    "preOrderDate": "2020-03-15",
    "preOrderPurchaseIndicator": true,
    "reorderItemsIndicator": true,
    "shippingAddressIndicator": "shipToStore"
}