fc.analytics.ordertypes
Setting
Changed on:
13 Nov 2025
| Setting Area | UI component |
|---|---|
| Supported context levels: | ACCOUNT, RETAILER |
Overview
The`fc.analytics.ordertypes` is a configuration that defines the available order types for the Order Type Filter on the Orders Dashboard in Fluent Analytics. This allows users to filter order data based on predefined order types.Values
| Data Type | Values |
|---|---|
| JSON | |
Detailed technical description
The order types specified in the setting are tailored to the reference Fluent Analytics orders dashboard. These values should be updated to ensure the filter reflects relevant order types in their operational context.Configuration example
1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4 createSetting(input: {
5 name: "fc.analytics.ordertypes",
6 valueType: "JSON",
7 lobValue: $lobValue ,
8 context: "ACCOUNT",
9 contextId: 0}) {
10 id
11 name
12 }
13}
14
15GraphQL variables:
16{
17 "lobValue" : [
18 {
19 "name": "Home Delivery",
20 "value": "HD"
21 },
22 {
23 "name": "Click & Collect",
24 "value": "CC"
25 },
26 {
27 "name": "Multi",
28 "value": "MULTI"
29 }
30 ]
31}
32