List all parcel line items
How to fetch a collection of parcel line items via API
To fetch a collection of parcel line items, send a
GET
request to the /api/parcel_line_items
endpoint.GET https://yourdomain.commercelayer.io/api/parcel_line_items
Request
Response
The following request fetches a collection of parcel line items:
curl -g -X GET \
'https://yourdomain.commercelayer.io/api/parcel_line_items/' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'
On success, the API responds with a
200 OK
status code, returning a paginated collection of resource objects:{
"data": [
{
"id": "xYZkjABcde",
"type": "parcel_line_items",
"links": {
"self": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde"
},
"attributes": {
"sku_code": "TSHIRTMM000000FFFFFFXLXX",
"bundle_code": "BUNDLEMM000000FFFFFFXLXX",
"quantity": 4,
"name": "Black Men T-shirt with White Logo (XL)",
"image_url": "https://img.yourdomain.com/skus/xYZkjABcde.png",
"created_at": "2018-01-01T12:00:00.000Z",
"updated_at": "2018-01-01T12:00:00.000Z",
"reference": "ANY-EXTERNAL-REFEFERNCE",
"reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
"metadata": {
"foo": "bar"
}
},
"relationships": {
"parcel": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/relationships/parcel",
"related": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/parcel"
}
},
"stock_line_item": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/relationships/stock_line_item",
"related": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/stock_line_item"
}
},
"shipment_line_item": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/relationships/shipment_line_item",
"related": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/shipment_line_item"
}
},
"versions": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/relationships/versions",
"related": "https://yourdomain.commercelayer.io/api/parcel_line_items/xYZkjABcde/versions"
}
}
},
"meta": {
"mode": "test"
}
},
{
"other": "... 9 parcel_line_items (first page)"
}
],
"meta": {
"record_count": 140,
"page_count": 14
},
"links": {
"first": "https://yourdomain.commercelayer.io/api/parcel_line_items?page[number]=1&page[size]=10",
"next": "https://yourdomain.commercelayer.io/api/parcel_line_items?page[number]=2&page[size]=10",
"last": "https://yourdomain.commercelayer.io/api/parcel_line_items?page[number]=14&page[size]=10"
}
}
quantity
id
created_at
updated_at
reference
reference_origin
quantity
id
created_at
updated_at
reference
reference_origin
metadata
parcel
stock_line_item
Last modified 1mo ago