Skip to main content
POST
/
inventory
/
adjustments
Adjust inventory stock
curl --request POST \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/inventory/adjustments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "adjustment_entries": [
    {
      "warehouse_id": 123,
      "location_id": 123,
      "qty_onhand": 123,
      "product_id": 123,
      "sku": "<string>"
    }
  ],
  "remarks": "<string>"
}
'
{
  "id": 123,
  "remarks": "<string>",
  "posted_by": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To obtain a token, contact [email protected]

Body

application/json
adjustment_entries
object[]
required
remarks
string

Optional remarks for the adjustment

Response

Successful response

id
integer

ID of the created adjustment

remarks
string

Remarks for the adjustment

posted_by
integer

ID of the user who posted the adjustment

created_at
string<date-time>

Timestamp of when the adjustment was created

updated_at
string<date-time>

Timestamp of when the adjustment was last updated