Create Stock Transaction on Product
POSThttps://euwest.api.elasticpath.com/v2/inventories/:product_uuid/transactions
Create Stock Transaction on Product
Request
Path Parameters
product_uuid stringrequired
The unique identifier of the product.
- application/json
Body
data TransactionCreaterequired
Responses
- 200
- 422
- 500
Success. Stock was successfully modified for 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"
}
}
}
The request was understood, but could not be processed by the server
- application/json
- Schema
- Example (from schema)
- missing-name
Schema
errors ErrorBody[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred."
}
]
}
{
"errors": [
{
"title": "Cannot complete request",
"status": 422,
"detail": "Your request could not be completed due to insufficient stock levels"
}
]
}
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/:product_uuid/transactions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": {
"type": "stock-transaction",
"action": "allocate",
"quantity": 5
}
}'
ResponseClear