Skip to main content

Patch an Org configuration property

PATCH 

/org-config

Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.

Request

Body

arrayrequired

A list of schema attribute update operations according to the JSON Patch standard.

  • Array [
  • op stringrequired

    Possible values: [add, remove, replace, move, copy, test]

    The operation to be performed

    path stringrequired

    A string JSON Pointer representing the target path to an element to be affected by the operation

    value object

    The value to be used for the operation, required for "add" and "replace" operations

    oneOf

    string

  • ]

Responses

The Org was successfully patched.

Schema
    orgName string

    The name of the org.

    timeZone string

    The selected time zone which is to be used for the org. This directly affects when scheduled tasks are executed. Valid options can be found at /beta/org-config/valid-time-zones

    lcsChangeHonorsSourceEnableFeature boolean

    Flag to determine whether the LCS_CHANGE_HONORS_SOURCE_ENABLE_FEATURE flag is enabled for the current org.

    armCustomerId stringnullable

    ARM Customer ID

    armSapSystemIdMappings stringnullable

    A list of IDN::sourceId to ARM::systemId mappings.

    armAuth stringnullable

    ARM authentication string

    armDb stringnullable

    ARM database name

    armSsoUrl stringnullable

    ARM SSO URL

    iaiEnableCertificationRecommendations boolean

    Flag to determine whether IAI Certification Recommendations are enabled for the current org

    sodReportConfigs object[]
  • Array [
  • columnName string

    Name of column in report

    required boolean

    Default value: false

    If true, column is required in all reports, and this entry is immutable. A 400 error will result from any attempt to modify the column's definition.

    included boolean

    Default value: false

    If true, column is included in the report. A 400 error will be thrown if an attempt is made to set included=false if required==true.

    order int32

    Possible values: <= 2147483647

    Relative sort order for the column. Columns will be displayed left-to-right in nondecreasing order.

  • ]
Loading...