Stock check

Checks if the product is in Stock or not.

get

Sample request:

Get /stock-check
{
   "productId": 1,
   "dmdCode": 12345678,
}
Authorizations
Query parameters
productIdinteger · int32Optional
dmdCodeinteger · int64Optional
Responses
200
If the product is in Stock or not.
application/json
get
GET /api/v1/Product/stock-check HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "inStock": true
}

Last updated