API Reference

The Line object is a core component within your e-commerce platform, representing individual items within an order. It allows for detailed tracking and manipulation of each product or service being purchased.

The Line object supports two API endpoints: PUT and PATCH, designed to update and edit the properties of a line item efficiently.


Attributes


lineId (Integer)

A unique numeric identifier for the line item.


attributes (array of objects)

A list of attributes associated with the line item. Each attribute is represented by an object containing a key-value pair.

"attributes": [
        {
                "key": "Name",
                "value": "Value"
        }
    ]