GET api/globalsettings

GET: api/globalconfigurationtypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GlobalSettingTypeViewModel
NameDescriptionTypeAdditional information
Id

Id

integer

None.

Name

Name

string

None.

IsEnabled

IsEnabled

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "isEnabled": true
  },
  {
    "id": 1,
    "name": "sample string 2",
    "isEnabled": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfGlobalSettingTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.GlobalConfiguration">
  <GlobalSettingTypeViewModel>
    <Id>1</Id>
    <IsEnabled>true</IsEnabled>
    <Name>sample string 2</Name>
  </GlobalSettingTypeViewModel>
  <GlobalSettingTypeViewModel>
    <Id>1</Id>
    <IsEnabled>true</IsEnabled>
    <Name>sample string 2</Name>
  </GlobalSettingTypeViewModel>
</ArrayOfGlobalSettingTypeViewModel>