GET organization/settings

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Setting
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Value

string

String length: inclusive between 0 and 200

Description

string

None.

ValidationRegExp

string

None.

Type

string

None.

UserEditable

boolean

None.

Level

Level

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Value": "sample string 3",
    "Description": "sample string 4",
    "ValidationRegExp": "sample string 5",
    "Type": "sample string 6",
    "UserEditable": true,
    "Level": "None"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Value": "sample string 3",
    "Description": "sample string 4",
    "ValidationRegExp": "sample string 5",
    "Type": "sample string 6",
    "UserEditable": true,
    "Level": "None"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSetting xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Setting>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Value>sample string 3</Value>
    <Description>sample string 4</Description>
    <ValidationRegExp>sample string 5</ValidationRegExp>
    <Type>sample string 6</Type>
    <UserEditable>true</UserEditable>
    <Level>None</Level>
  </Setting>
  <Setting>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Value>sample string 3</Value>
    <Description>sample string 4</Description>
    <ValidationRegExp>sample string 5</ValidationRegExp>
    <Type>sample string 6</Type>
    <UserEditable>true</UserEditable>
    <Level>None</Level>
  </Setting>
</ArrayOfSetting>