Fluent Commerce Logo
Docs

ORCHESTRATION_NEW_STYLE

Setting

Changed on:

11 Feb 2026

Setting AreaUI component
Supported context levels:ACCOUNT

Overview

Provides configuration control over the Workflow Modeller user interface styling. A value of TRUE applies Fluent OMS styling, while FALSE applies legacy Console styling. If the setting is not created, legacy Console styling is applied by default.

Values

Data TypeValues
BOOLEANDefault Values:
  • FALSE
Possible Values:
  • TRUE
  • FALSE

Configuration example

1POST: {{fluentApiHost}}/graphql
2
3
4GraphQL Query:
5mutation CreateSetting {
6createSetting(input: {
7		name: "ORCHESTRATION_NEW_STYLE", 
8		valueType: "BOOLEAN", 
9		value: "TRUE", 
10		context: "ACCOUNT", 
11		contextId:0}) {
12    id
13    name
14  }
15}

Update example

1POST {{fluentApiHost}}/graphql
2
3mutation updateSetting {
4  updateSetting(input: {
5		id: 5001464,
6		name: "ORCHESTRATION_NEW_STYLE", 
7		valueType: "BOOLEAN", 
8		value:"FALSE", 
9		context: "ACCOUNT", 
10		contextId: 0}) {
11    id
12    name
13  }
14}