Comment on page
Create a parcel line item
How to create a parcel line item via API
To create a new parcel line item, send a
POST
request to the /api/parcel_line_items
endpoint, passing the resource arguments in the request body.POST https://yourdomain.commercelayer.io/api/parcel_line_items
Body Parameter | Type | Required |
---|---|---|
type | string | Required |
attributes.quantity | integer | Required |
attributes.reference | string | Optional |
attributes.reference_origin | string | Optional |
attributes.metadata | object | Optional |
relationships.parcel | object | Required |
relationships.stock_line_item | object | Required |
relationships.shipment_line_item | object | Optional |
Request
Response
The following request creates a new parcel line item:
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/parcel_line_items' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "parcel_line_items",
"attributes": {
"quantity": 4
},
"relationships": {
"parcel": {
"data": {
"type": "parcels",
"id": "ABCRtyUpBa"
}
},
"stock_line_item": {
"data": {
"type": "stock_line_items",
"id": "BCDRtyUpBa"
}
}
}
}
}'
On success, the API responds with a
201 Created
status code, returning the created resource object:{
"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"
}
}
}
Last modified 3mo ago