Create Product Local Inventory
POSThttps://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
Name | Required |
---|---|
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
- application/json
Body
costPricenumber
Example:
11.31
locationstring
Example:
L5
nextDeliveryDatestring
Example:
2022-02-20T00:00:00
notesstring
Example:
quantitynumber
Example:
16
usergroup object
Responses
- 201
- 400
- 404
Create Product Local Inventory - 201 / Create Product Local Inventory for a usergroup - 200
Response Headers
- application/json
- Schema
- Example (auto)
- Create Product Local Inventory - 201
- Create Product Local Inventory for a usergroup - 200
Schema
data object
messagesstring[]
Example:
["Inventory created"]
totalnumber
Example:
1
{
"data": {
"companyId": 0,
"costPrice": 11.31,
"dateModified": "2022-03-11T11:04:29",
"id": 16194,
"location": "L5",
"nextDeliveryDate": "2022-02-20T00:00:00",
"notes": "",
"productId": 38952,
"quantity": 16,
"sku": "AA 0635613",
"supplier": "INTERN",
"supplierCode": "AA 0635613",
"usergroupId": 0,
"warehouseId": 4
},
"messages": [
"Inventory created"
],
"total": 1
}
{
"data": {
"companyId": 0,
"costPrice": 11.31,
"dateModified": "2022-03-11T11:04:29",
"id": 16194,
"location": "L5",
"nextDeliveryDate": "2022-02-20T00:00:00",
"notes": "",
"productId": 38952,
"quantity": 16,
"sku": "AA 0635613",
"supplier": "INTERN",
"supplierCode": "AA 0635613",
"usergroupId": 0,
"warehouseId": 4
},
"messages": [
"Inventory created"
],
"total": 1
}
{
"data": {
"companyId": 0,
"costPrice": 11.31,
"dateModified": "2023-10-02T15:08:39",
"id": 16148,
"location": "L5",
"nextDeliveryDate": "2022-02-20T00:00:00",
"notes": "",
"productId": 227235,
"quantity": 16,
"sku": "9789006953374",
"supplier": "INTERN",
"supplierCode": "",
"usergroupId": 143,
"warehouseId": 0
},
"messages": [
"Inventory created"
],
"total": 1
}
Create Product Local Inventory - 400
Response Headers
- application/json
- Schema
- Example (auto)
- Create Product Local Inventory - 400
Schema
error object
{
"error": {
"code": 13004,
"messages": [
"Inventory already exists"
],
"moreInfo": "https://www.propel.us/docs/errors/13004",
"status": 400,
"type": "InventoryExists"
}
}
{
"error": {
"code": 13004,
"messages": [
"Inventory already exists"
],
"moreInfo": "https://www.propel.us/docs/errors/13004",
"status": 400,
"type": "InventoryExists"
}
}
Create Product Local Inventory - 404
Response Headers
- application/json
- Schema
- Example (auto)
- Create Product Local Inventory - 404
Schema
error object
{
"error": {
"code": 80006,
"messages": [
"Product with id [98952] not found"
],
"moreInfo": "https://www.propel.us/docs/errors/80006",
"status": 404,
"type": "ProductNotFound"
}
}
{
"error": {
"code": 80006,
"messages": [
"Product with id [98952] not found"
],
"moreInfo": "https://www.propel.us/docs/errors/80006",
"status": 404,
"type": "ProductNotFound"
}
}
Authorization: OAuth2
name: OAuth2type: oauth2bearerFormat: tokenscheme: bearerdescription: OAuth2 Authorizationin: headerflows: {
"clientCredentials": {
"tokenUrl": "https://api.helice.cloud/oauth2/token/",
"scopes": {}
}
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
ResponseClear