The line items included in the order (what the customer is paying for). You may include as many line items as required to specify the order.
Example XML:
<lineItems>
<lineItem>...1...</lineItem>
<lineItem>...2...</lineItem>
</lineItems>
Each line item must be placed within its own lineItem element.
It is highly recommended that you always send in complete line item information. Several payment methods, especially invoicing methods, require complete line information and you will not be able to use these methods if lines are not provided.
id required | string(1-50) | The ID for this line item. This value must be unique per collection of line items. Example: "1" |
articleNumber required | string(1-50) | The article/product number for the item being sold. Example: "10" |
name required | string(1-255) | The name of the item being sold. Constraints: > Maximum length for invoice/installments = 50. Example: "Test product" |
description required | string(1-255) | The description of the item being sold. Example: "Product description goes here" For invoice/installments we recommend a maximum of 75 characters. |
productUrl | string | The URL on your website to the item being sold. Example: "http://myshop.com/products/1000" |
components | components | Components of the line item Only the following two cases are permitted: 1. TaxPercent , TotalLineTaxAmount , UnitAmountExcludingTax supplied only for lineItem and not for any component 2. totalComponentAmount , TaxPercent , TotalComponentTaxAmount , UnitAmountExcludingTax supplied for all components. In this case, only TotalLineTaxAmount should be specified on the line item level.Example "id": 2, "articleNumber": "123", "name": "Test component 25%", "description": "Test component 25%", "productUrl": "http://www.paynova.com", "quantity": 1, "unitMeasure": "st", "unitAmountExcludingTax": 100.00, "taxPercent": 25.00, "totalComponentTaxAmount": 25.00, "totalComponentAmount": 125.00 |
quantity required | decimal | The number of items being sold at this price. Example: 4.00 |
unitMeasure required | string | The unit of measure of the product/service being sold. Examples: "meters" , "pieces" , "st" |
unitAmountExcludingTax required | decimal | The price of each unit, excluding tax. Example: 20.00 |
taxPercent required | decimal | The tax/VAT percentage for the item being sold. Acceptable VAT rates for Sweden: 0.00 , 6.00 , 12.00 , 25.00 |
totalLineTaxAmount required | decimal | The total tax/VAT amount charged for this line. Example: 20.00 |
totalLineAmount required | decimal | The total amount charged for this line, including tax/VAT (quantity * unitAmountExcludingTax + calculated tax). Example: 100.00 |
travelData | travelData | Due to the complexity and industry-specific nature of this element it's description is not included on this page. If you would like to provide this information, please review the TravelData service type description for details. |