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
Field | Subfield | Type | Required | Description | Example | Min Length | Max Length |
---|---|---|---|---|---|---|---|
items | Array | Optional | List of cart items. Each item should have the following fields: | - | - | - | |
name | String | Required | The name of the item. | item 1 | - | - | |
amount | Integer | Required | The amount of the item in minor units. | 42000 | - | - | |
unitPrice | Integer | Optional | The amount of a single quantity of item in minor units. | 23500 | - | - | |
quantity | Integer | Optional | The quantity of the items bought. | 2 | - | - | |
amountWithoutDiscount | Integer | Optional | The amount of the item without discount in minor units. If provided, Amount cannot be higher than the amount without discount | 47000 | - | - |