Fluent Commerce Logo
Docs

fc.analytics.ordertypes

Setting

Changed on:

13 Nov 2025

Setting AreaUI 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 TypeValues
JSON
1[
2  {
3    "name": "Home Delivery",
4    "value": "HD"
5  },
6  {
7    "name": "Click & Collect",
8    "value": "CC"
9  },
10  {
11    "name": "Multi",
12    "value": "MULTI"
13  }
14]
15

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