Skip to main content

Create Product Local Inventory

POST 

https://api.helice.cloud/api/g/v1/products/:lookupkey/:key/inventory/local

This endpoint allows creating local inventory data for a product based on a lookup key.

Available fields

NameRequired
quantity (integer)yes
warehouseId (integer)no
Default value is 0
company
(InventoryCompanyUsergroupResource)
no
usergroup
(InventoryCompanyUsergroupResource)
no
location (string)no
Default value is empty
costPrice (integer)no
Default value is product costprice
nextDeliveryDate (date)no
notes (string)no

dateModified is always updated with the current date and time.

On creating a record, inventory type local is matching the product on the lookup key. If the product is found, inventory record will be created.

If an inventory record is found, matching on: sku, warehouseId and location, error is thrown that duplicate record can't be created.

Request

Path Parameters

    lookupkey stringrequired

    Available lookup keys: id, sourceId, sku, supplierCode

    key stringrequired

    Lookup key value

Body

    costPricenumber
    Example: 11.31
    locationstring
    Example: L5
    nextDeliveryDatestring
    Example: 2022-02-20T00:00:00
    notesstring
    Example:
    quantitynumber
    Example: 16
    usergroup object
    idnumber
    Example: 143

Responses

Create Product Local Inventory - 201 / Create Product Local Inventory for a usergroup - 200

Response Headers
    Connection
    Content-Length
    Date
    Keep-Alive
    Return-Format
Schema
    data object
    companyIdnumber
    Example: 0
    costPricenumber
    Example: 11.31
    dateModifiedstring
    Example: 2022-03-11T11:04:29
    idnumber
    Example: 16194
    locationstring
    Example: L5
    nextDeliveryDatestring
    Example: 2022-02-20T00:00:00
    notesstring
    Example:
    productIdnumber
    Example: 38952
    quantitynumber
    Example: 16
    skustring
    Example: AA 0635613
    supplierstring
    Example: INTERN
    supplierCodestring
    Example: AA 0635613
    usergroupIdnumber
    Example: 0
    warehouseIdnumber
    Example: 4
    messagesstring[]
    Example: ["Inventory created"]
    totalnumber
    Example: 1

Authorization: OAuth2

name: OAuth2type: oauth2bearerFormat: tokenscheme: bearerdescription: OAuth2 Authorizationin: headerflows: {
  "clientCredentials": {
    "tokenUrl": "https://api.helice.cloud/oauth2/token/",
    "scopes": {}
  }
}

Request Collapse all
Base URL
https://api.helice.cloud/api/g/v1
Auth
Parameters
— pathrequired
— pathrequired
Body
{
  "costPrice": 11.31,
  "location": "L5",
  "nextDeliveryDate": "2022-02-20T00:00:00",
  "notes": "",
  "quantity": 16,
  "usergroup": {
    "id": 143
  }
}
ResponseClear

Click the Send API Request button above and see the response here!