Update an inventory stock location
How to update an existing inventory stock location via API
To update an existing inventory stock location, send a PATCH
request to the /api/inventory_stock_locations/:id
endpoint, where id
is the ID of the resource that you want to update.
Here below the list of all the possible arguments that you can pass with the request body.
Request
PATCH https://yourdomain.commercelayer.io/api/inventory_stock_locations/:id
Arguments
Body Parameter | Type | Required |
---|---|---|
type |
| Required |
id |
| Required |
attributes.priority |
| Optional |
attributes.on_hold |
| Optional |
attributes.reference |
| Optional |
attributes.reference_origin |
| Optional |
attributes.metadata |
| Optional |
relationships.stock_location |
| Optional |
relationships.inventory_model |
| Optional |
Example
The following request updates the inventory stock location identified by the ID "xYZkjABcde":
Last updated