- Auth
- Apps Oauth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a ReservationPOST
- Cancel Claim's FulfillmentPOST
- Ship a Claim's FulfillmentPOST
- Cancel Swap's FulfilmmentPOST
- Get Order ReservationsGET
- Add a Shipping MethodPOST
- Create a RefundPOST
- Get an OrderGET
- Update an OrderPOST
- Create a FulfillmentPOST
- Cancel a SwapPOST
- List OrdersGET
- Create a SwapPOST
- Complete an OrderPOST
- Create a Swap FulfillmentPOST
- Cancel a ClaimPOST
- Process a Swap PaymentPOST
- Ship a FulfillmentPOST
- Capture an Order's PaymentsPOST
- Archive OrderPOST
- Update a ClaimPOST
- Request a ReturnPOST
- Create a Claim FulfillmentPOST
- Ship a Swap's FulfillmentPOST
- Cancel a FulfilmmentPOST
- Create a ClaimPOST
- Cancel an OrderPOST
- 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
Create a Reservation
POST
/admin/orders/{id}/line-items/{line_item_id}/reserve
Orders
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.medusa-commerce.com/admin/orders//line-items//reserve' \
--header 'Content-Type: application/json' \
--data-raw ''
Response Response Example
200 - Example 1
{
"line_item_id": "string",
"location_id": "string",
"inventory_item_id": "string",
"quantity": 0,
"metadata": {}
}
Request
Path Params
id
string
required
line_item_id
string
required
Body Params application/json
location_id
string
required
quantity
number
optional
Examples
Responses
🟢200OK
application/json
Body
line_item_id
string
optional
location_id
string
required
inventory_item_id
string
required
quantity
number
required
metadata
object
optional
🟠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