CreateFulfilmentInventoryQuantity
Changed on:
12 Aug 2025
Overview
Create inventory quantity of type {inventoryQuantityType} using event attributes, or set default type as {defaultType}, condition as {defaultCondition} and storageRef as {defaultStorageAreaRef}| Plugin Name | Inventory Reference Module |
|---|---|
| Namespace | [[account.id]].globalinventory |
- Product Catalogue workflow
- Inventory Catalogue workflow
- Control Group workflow
- Virtual Catalogue workflow
UI Description
Create inventory quantity of type {inventoryQuantityType} using event attributes, or set default type as {defaultType}, condition as {defaultCondition} and storageRef as {defaultStorageAreaRef}
Accepts
- INVENTORY_POSITION
Actions
- This rule produces multiple MutationActions that will create a list of inventory quantities
Rule parameters
| Parameter | Description |
| defaultType | Inventory quantity type |
| defaultCondition | Default inventory quantity Condition |
| defaultStorageAreaRef | Default inventory quantity Storage Area Ref |
| inventoryQuantityType | Expected Inventory Type |
Event attributes
Inventory Position sub-attribute
| Parameter | Description | Data Type | Required? |
| inventoryPosition | Inventory position json object | Object | Required |
Exceptions
Configuration example
1{
2 "name": "{{accountId}}.globalinventory.CreateFulfilmentInventoryQuantity",
3 "props": {
4 "defaultType": "DEFAULT",
5 "defaultCondition": "NEW",
6 "defaultStorageAreaRef": "",
7 "inventoryQuantityType": "RESERVED"
8 }
9}Detailed Technical Description
InventoryPosition Java Class Definition
InventoryQuantity Java Class Definition
An example JSON payload that represents the event attributes of an incoming eventThis rule will get a list of inventory quantities against a given inventory position from the incoming event, it will only create inventory quantities if their types are same as the one defined in the
`inventoryQuantityType` input parameter.If a given inventory quantity already exists in the database, the mutation of adding the inventory quantity will fail.