Fluent Commerce Logo
Docs
Sign In

fc.fulfilmentoptions.create.event.persistence

Setting

Changed on:

11 Feb 2025

Setting AreaWorkflow, Orders
Supported context levels:ACCOUNT

Overview

This setting enables an options creation to be run asynchronously to the request.  Read more about it in Fulfilment Options improvements enablement.

Values

Data TypeValues
STRING

Default Values:

  • asynchronous

Possible Values:

  • asynchronous 
  • synchronous

Configuration example

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

Update example

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