GET api/ModuleSet

Request Information

URI Parameters

None.

Body Parameters

ModuleSet
NameDescriptionTypeAdditional information
type

string

None.

AppModuleName

string

None.

AppmoduleCode

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "type": "sample string 1",
  "AppModuleName": "sample string 2",
  "AppmoduleCode": 3
}

application/xml, text/xml

Sample:
<ModuleSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <AppModuleName>sample string 2</AppModuleName>
  <AppmoduleCode>3</AppmoduleCode>
  <type>sample string 1</type>
</ModuleSet>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ModuleSet
NameDescriptionTypeAdditional information
type

string

None.

AppModuleName

string

None.

AppmoduleCode

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "type": "sample string 1",
    "AppModuleName": "sample string 2",
    "AppmoduleCode": 3
  },
  {
    "type": "sample string 1",
    "AppModuleName": "sample string 2",
    "AppmoduleCode": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfModuleSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <ModuleSet>
    <AppModuleName>sample string 2</AppModuleName>
    <AppmoduleCode>3</AppmoduleCode>
    <type>sample string 1</type>
  </ModuleSet>
  <ModuleSet>
    <AppModuleName>sample string 2</AppModuleName>
    <AppmoduleCode>3</AppmoduleCode>
    <type>sample string 1</type>
  </ModuleSet>
</ArrayOfModuleSet>