Fluent Commerce Logo
Docs

fc.analytics.returnordertypes

Setting

Changed on:

16 Jan 2026

Setting AreaUI component
Supported context levels:ACCOUNT, RETAILER

Overview

The `fc.analytics.returnordertypes` is a configuration that defines the available return order types for the Return Order Type Filter on the Returns Dashboard in Fluent Analytics. This allows users to filter return order data based on predefined return order types.

Values

Data TypeValues
JSON
1[
2  {
3    "name": "Default",
4    "value": "DEFAULT"
5  }
6]
7

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": "Default",
20        "value": "DEFAULT"
21      }
22    ]
23}
24