Update warehouse
| id required | string <uuid> |
| x-tenant | string <uuid> |
| id | string <uuid> |
| name | string |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string"
}Create new warehouse
| x-tenant | string <uuid> |
| id | string <uuid> |
| name | string |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string"
}Create new WZ (Goods Received) document
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| number | string |
Array of objects (Item) [ 0 .. 2048 ] items | |
| unlockItems | boolean Whether to unlock all referenced items. |
object |
{- "number": "string",
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0,
- "unitPrice": 0,
- "total": 0,
- "cat": [
- "string"
], - "extra": {
- "property1": "string",
- "property2": "string"
}
}
], - "unlockItems": true,
- "extra": {
- "property1": "string",
- "property2": "string"
}
}Create new RW (Internal Goods Issued) document
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| number | string |
Array of objects (Item) [ 0 .. 2048 ] items | |
| unlockItems | boolean Whether to unlock all referenced items. |
object |
{- "number": "string",
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0,
- "unitPrice": 0,
- "total": 0,
- "cat": [
- "string"
], - "extra": {
- "property1": "string",
- "property2": "string"
}
}
], - "unlockItems": true,
- "extra": {
- "property1": "string",
- "property2": "string"
}
}Create new PZ (Goods Received) document
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| number | string |
Array of objects (Item) [ 0 .. 2048 ] items | |
| unlockItems | boolean Whether to unlock all referenced items. |
object |
{- "number": "string",
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0,
- "unitPrice": 0,
- "total": 0,
- "cat": [
- "string"
], - "extra": {
- "property1": "string",
- "property2": "string"
}
}
], - "unlockItems": true,
- "extra": {
- "property1": "string",
- "property2": "string"
}
}Create new MM (Goods Transfer) document
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| number | string |
Array of objects (Item) [ 0 .. 2048 ] items | |
| unlockItems | boolean Whether to unlock all referenced items. |
object | |
| targetWarehouse | string <uuid> |
{- "number": "string",
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0,
- "unitPrice": 0,
- "total": 0,
- "cat": [
- "string"
], - "extra": {
- "property1": "string",
- "property2": "string"
}
}
], - "unlockItems": true,
- "extra": {
- "property1": "string",
- "property2": "string"
}, - "targetWarehouse": "ab6a203d-2362-48e5-84dd-80e203f3e679"
}Create new Inventory document
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| number | string |
Array of objects (Item) [ 0 .. 2048 ] items | |
| unlockItems | boolean Whether to unlock all referenced items. |
object |
{- "number": "string",
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0,
- "unitPrice": 0,
- "total": 0,
- "cat": [
- "string"
], - "extra": {
- "property1": "string",
- "property2": "string"
}
}
], - "unlockItems": true,
- "extra": {
- "property1": "string",
- "property2": "string"
}
}Get current stock
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| items required | Array of strings[ items[\p{L}\p{N}_.-]+ ] |
{- "items": [
- "string"
]
}Lock as much as possible of items
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
| qty required | integer <int32> Requested number of packets. |
Array of objects (ItemLock) [ 0 .. 2048 ] items Packet definition. |
{- "qty": 0,
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0
}
]
}Lock as many packets as possible. Packets are defined as named lists of products.
| warehouse required | string <uuid> |
| x-tenant | string <uuid> |
| x-user | string <uuid> |
object |
{- "packets": {
- "property1": {
- "qty": 0,
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0
}
]
}, - "property2": {
- "qty": 0,
- "items": [
- {
- "id": "string",
- "unit": "l",
- "qty": 0
}
]
}
}
}