InventoryProducts
Create an Inventory Product Adjustment
This endpoint creates an adjustment for the given inventory product.
post/inventory/products/{productId}/adjustments
Request body
Example request
{
"quantity": 10.5,
"reason_code": "Professional Use",
"reason_description": "Stock used for professional use"
}Response
The inventory product adjustment was successfully retrieved
Example response
{
"data": {
"quantity": 10.5,
"reason_code": "Professional Use",
"reason_description": "Stock used for professional use",
"created_at": "2024-05-01T00:00:00Z"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.