Skip to main content

Items List

info

Items are used to provide a detailed list of items that the customer is purchasing.
This information is displayed on the hosted checkout page.

Request Example

{
"amount": "48900",
"currency": "ISK",
"returnUrl": "https://your-ecommerce-website.com/straumur_redirect",
"reference": "9990QQAZ1221",
"items": [
{
"name": "Gummy Bears",
"amount": 6900
},
{
"name": "Lollipops",
"amount": 42000,
"unitPrice": 23500,
"quantity": 2,
"amountWithoutDiscount": 47000
}
]
}

Request Fields

FieldSubfieldTypeRequiredDescriptionExampleMin LengthMax Length
itemsArrayOptionalList of cart items. Each item should have the following fields:---
nameStringRequiredThe name of the item.item 1--
amountIntegerRequiredThe amount of the item in minor units.42000--
unitPriceIntegerOptionalThe amount of a single quantity of item in minor units.23500--
quantityIntegerOptionalThe quantity of the items bought.2--
amountWithoutDiscountIntegerOptionalThe amount of the item without discount in minor units.

If provided, Amount cannot be higher than the amount without discount
47000--