fc.oms.mystique.inventory.search.virtual.position.stock.statuses
Changed on:
17 Jan 2025
Setting Area | UI component |
---|---|
Supported context levels: | ACCOUNT, RETAILER |
Overview
The
`fc.oms.mystique.inventory.search.virtual.position.stock.statuses`
Values
Data Type | Values |
---|---|
JSON |
Language: plain_text Name: Sample Filter Values Description: Example configuration of possible filter values |
Detailed technical description
The statuses specified in the setting are tailored to the reference Virtual Catalog workflow and serve as an example. These values should be updated to align with the specific requirements and workflows, ensuring the filter reflects relevant statuses in their operational context.
Configuration example
1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4 createSetting(input: {
5 name: "fc.oms.mystique.inventory.search.virtual.position.stock.statuses",
6 valueType: "JSON",
7 lobValue:$lobValue ,
8 context: "RETAILER",
9 contextId:$retailerId}) {
10 id
11 name
12 }
13}
14
15GraphQL variables:
16{
17 "retailerId": {{retailer_id}},
18 "lobValue" : [
19 "CREATED",
20 "INACTIVE",
21 "ACTIVE",
22 "AT_RISK",
23 "OUT_OF_STOCK"
24]
25}
26
Language: graphqlschema