- Auth
- Apps Oauth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a Reservation
- Cancel Claim's Fulfillment
- Ship a Claim's Fulfillment
- Cancel Swap's Fulfilmment
- Get Order Reservations
- Add a Shipping Method
- Create a Refund
- Get an Order
- Update an Order
- Create a Fulfillment
- Cancel a Swap
- List Orders
- Create a Swap
- Complete an Order
- Create a Swap Fulfillment
- Cancel a Claim
- Process a Swap Payment
- Ship a Fulfillment
- Capture an Order's Payments
- Archive Order
- Update a Claim
- Request a Return
- Create a Claim Fulfillment
- Ship a Swap's Fulfillment
- Cancel a Fulfilmment
- Create a Claim
- Cancel an Order
- Order Edits
- Payments
- Payment Collections
- Product Collections
- Product Tags
- Product Types
- Product Variants
- Price Lists
- Products
- Product Categories
- Publishable Api Keys
- Reservations
- Regions
- Return Reasons
- Returns
- Sales Channels
- Shipping Options
- Shipping Profiles
- Stock Locations
- Store
- Swaps
- Uploads
- Tax Rates
- Users
Update an Inventory Item
POST
/admin/inventory-items/{id}
Inventory Items
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.medusa-commerce.com/admin/inventory-items/' \
--header 'Content-Type: application/json' \
--data-raw ''
Response Response Example
200 - Example 1
{
"inventory_item": {
"sku": "string",
"hs_code": "string",
"origin_country": "string",
"mid_code": "string",
"title": "string",
"description": "string",
"thumbnail": "string",
"material": "string",
"weight": 0,
"height": 0,
"width": 0,
"length": 0,
"requires_shipping": true,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"metadata": {
"car": "white"
}
}
}
Request
Path Params
id
string
required
Query Params
expand
string
optional
fields
string
optional
Body Params application/json
hs_code
string
optional
origin_country
string
optional
mid_code
string
optional
material
string
optional
weight
number
optional
height
number
optional
width
number
optional
length
number
optional
requires_shipping
boolean
optional
Examples
Responses
🟢200OK
application/json
Body
inventory_item
object (InventoryItemDTO)
required
sku
string
required
hs_code
string
optional
origin_country
string
optional
mid_code
string
optional
title
string
optional
description
string
optional
thumbnail
string
optional
material
string
optional
weight
number
optional
height
number
optional
width
number
optional
length
number
optional
requires_shipping
boolean
optional
created_at
string <date-time>
optional
updated_at
string <date-time>
optional
deleted_at
string <date-time>
optional
metadata
object
optional
Example:
{"car":"white"}
🟠400Client Error or Multiple Errors
🟠401User is not authorized. Must log in first
🟠404Not Found Error
🟠409Invalid State Error
🟠422Invalid Request Error
🔴500Server Error
Modified at 2023-10-10 11:56:36