POST 17.0/app/system/configuration/company/{companyid}/update

Description

Updates the passed Company Configuration setting

URI Parameters

Name Description Type Additional information
companyId

integer

Required

Name Description Type Additional information
RecordRead

boolean

None.

DataChanged

boolean

None.

Editing

boolean

None.

SuppressAutoID

boolean

None.

SuppressRequiredFieldCheck

boolean

None.

SuppressClassLogic

boolean

None.

ID

string

None.

OriginalID

string

None.

CompanyID

integer

None.

OriginalCompanyID

integer

None.

Val

string

None.

OriginalVal

string

None.

application/json, text/json

Sample:
{
  "recordRead": false,
  "dataChanged": true,
  "editing": false,
  "suppressAutoID": true,
  "suppressRequiredFieldCheck": true,
  "suppressClassLogic": true,
  "id": "sample string 5",
  "companyID": 6,
  "originalCompanyID": 0,
  "val": "sample string 7"
}

application/xml, text/xml

Sample:
<CompanyConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DataChanged>true</DataChanged>
  <SuppressAutoID>true</SuppressAutoID>
  <SuppressRequiredFieldCheck>true</SuppressRequiredFieldCheck>
  <SuppressClassLogic>true</SuppressClassLogic>
  <ID>sample string 5</ID>
  <CompanyID>6</CompanyID>
  <Val>sample string 7</Val>
</CompanyConfiguration>

application/x-www-form-urlencoded

Sample:

Sample not available.

None.

None.