Fluent Commerce Logo
Docs
Sign In

fc.api.fulfilment.uniqueness

Setting

Changed on:

8 May 2024

Setting AreaWorkflow, Orders
Supported context levels:ACCOUNT

Overview

Enabled a new unique constraint for the fulfillment creation process to prevent duplicate fulfillments. Enabling this feature toggle can impact the existing business process of replay fulfillments at the same location; see the Managing Duplicate Fulfilments functionality.

Values

Data TypeValues
STRING

Default Values:

  • DISABLED

Possible Values:

  • DISABLED
  • ENABLED


Detailed technical description

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "fc.api.fulfilment.uniqueness", 
6		valueType: "STRING", 
7		value: "ENABLED", 
8		context: "ACCOUNT", 
9		contextId: 0}) {
10    id
11    name
12  }
13}

Language: json

Update example

1POST {{fluentApiHost}}/graphql
2
3mutation updateSetting {
4  updateSetting(input: {
5		id: 5001464,
6		name: "fc.api.fulfilment.uniqueness", 
7		valueType: "STRING", 
8		value:"DISABLED", 
9		context: "ACCOUNT", 
10		contextId: 0}) {
11    id
12    name
13  }
14}
15

Language: graphqlschema