rubix.enable.enhanced.gi.exception.audit.event
Setting
Changed on:
24 Oct 2023
Setting Area | UI component, Workflow, Orders |
---|---|
Supported context levels: | ACCOUNT |
Overview
This setting extends the Inventory domain Audit Events to include the Event Attribute Payload.
Note the default value for new accounts created after 20/08/2022 is
`enabled`
Values
Data Type | Values |
---|---|
STRING | Default Values:
Possible Values:
|
Configuration example
1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4 createSetting(input: {
5 name: "rubix.enable.enhanced.gi.exception.audit.event",
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: "rubix.enable.enhanced.gi.exception.audit.event",
7 valueType: "STRING",
8 value:"disabled",
9 context: "ACCOUNT",
10 contextId: 0}) {
11 id
12 name
13 }
14}
15
Language: json