Get Stock Transactions for Product
GEThttps://euwest.api.elasticpath.com/v2/inventories/:product_uuid/transactions
Returns the transactions recorded for the specified product.
Request
Path Parameters
product_uuid stringrequired
The unique identifier of the product.
Responses
- 200
- 500
Success. Returns the stock for the given product
- application/json
- Schema
- Example (from schema)
Schema
data Transaction[]
{
"data": [
{
"id": "f976dace-450f-4a5d-8877-d119c5a550a1",
"type": "stock-transaction",
"action": "allocate",
"product_id": "86b84d3e-0a86-43d6-a347-78ba4adacca2",
"quantity": 5,
"timestamps": {
"created_at": "2017-07-21T17:32:28Z"
}
}
]
}
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 GET 'https://euwest.api.elasticpath.com/v2/inventories/:product_uuid/transactions' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear