Create a stock item
How to create a stock item via API
To create a new stock item, send a
POST
request to the /api/stock_items
endpoint, passing the resource arguments in the request body.POST https://yourdomain.commercelayer.io/api/stock_items
Body Parameter | Type | Required |
---|---|---|
type | string | Required |
attributes.sku_code | string | Optional |
attributes.quantity | integer | Required |
attributes.reference | string | Optional |
attributes.reference_origin | string | Optional |
attributes.metadata | object | Optional |
relationships.stock_location | object | Required |
relationships.sku | object | Required, if not set through the sku_code attribute |
Request
Response
The following request creates a new stock item:
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/stock_items' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "stock_items",
"attributes": {
"quantity": 100
},
"relationships": {
"stock_location": {
"data": {
"type": "stock_locations",
"id": "ABCRtyUpBa"
}
},
"sku": {
"data": {
"type": "skus",
"id": "BCDRtyUpBa"
}
}
}
}
}'
On success, the API responds with a
201 Created
status code, returning the created resource object:{
"data": {
"id": "xYZkjABcde",
"type": "stock_items",
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde"
},
"attributes": {
"sku_code": "TSHIRTMM000000FFFFFFXLXX",
"quantity": 100,
"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": {
"stock_location": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/stock_location",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/stock_location"
}
},
"sku": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/sku",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/sku"
}
},
"reserved_stock": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/reserved_stock",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/reserved_stock"
}
},
"stock_reservations": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/stock_reservations",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/stock_reservations"
}
},
"attachments": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/attachments",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/attachments"
}
},
"versions": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/relationships/versions",
"related": "https://yourdomain.commercelayer.io/api/stock_items/xYZkjABcde/versions"
}
}
},
"meta": {
"mode": "test"
}
}
}
Last modified 2mo ago