Adjustments

Store

Create a new adjustment.

POST /adjustment
Parameter Type Examples Description
item_id integer 22 ID of the item you are creating an adjustment for.
warehouse_id integer 5 ID of the warehouse you are creating the adjustment in.
quantity integer -4 The amount you are adjusting by. This can be a negative or positive number.
reason string lost One of the following valid reasons: lost, found, damaged, other.
notes text Missing in warehouse Optional notes to explain the reason for the adjustment.

Example Response

{
    "message": "Adjustment added",
    "adjustment": {
        "reason": "lost",
        "updated_at": "2021-05-20T07:54:15.000000Z",
        "created_at": "2021-05-20T07:54:15.000000Z",
        "id": 1
    }
}