Get Stock for Multiple Products
POSThttps://euwest.api.elasticpath.com/v2/inventories/multiple
Returns stock for all products matching the supplied unique identifiers.
Request
- application/json
Body
data object[]
Responses
- 200
- 500
Success. Multiple products and their stock values are returned.
- application/json
- Schema
- Example (from schema)
- Example
Schema
data Inventory[]
{
"data": [
{
"id": "f976dace-450f-4a5d-8877-d119c5a550a1",
"type": "stock",
"total": 100,
"available": 75,
"allocated": 25
}
]
}
{
"data": [
{
"id": "ebc7652d-bb7d-4359-9a83-78f2998208d9",
"type": "stock",
"total": 100,
"available": 75,
"allocated": 25
},
{
"id": "5334e697-a576-4ac5-8075-ab457dfcaddd",
"type": "stock",
"total": 22,
"available": 18,
"allocated": 4
}
]
}
Internal server error. There was a system failure in the platform.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
errors ErrorBody[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred."
}
]
}
{
"errors": [
{
"title": "Internal Server Error",
"status": 500
}
]
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://euwest.api.elasticpath.com/v2/inventories/multiple' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": [
{
"id": "3c78777a-cf09-4b2d-be91-a73acbf9166f"
}
]
}'
ResponseClear