GET api/ModulePlan

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ModulePlanDataModel
NameDescriptionTypeAdditional information
ModuleID

integer

None.

ModuleName

string

None.

Selected

boolean

None.

IsAddon

integer

None.

AddonPrice

decimal number

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
[
  {
    "moduleID": 1,
    "moduleName": "sample string 2",
    "selected": true,
    "isAddon": 4,
    "addonPrice": 5.0
  },
  {
    "moduleID": 1,
    "moduleName": "sample string 2",
    "selected": true,
    "isAddon": 4,
    "addonPrice": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfModulePlanDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel">
  <ModulePlanDataModel>
    <AddonPrice>5</AddonPrice>
    <IsAddon>4</IsAddon>
    <ModuleID>1</ModuleID>
    <ModuleName>sample string 2</ModuleName>
    <Selected>true</Selected>
  </ModulePlanDataModel>
  <ModulePlanDataModel>
    <AddonPrice>5</AddonPrice>
    <IsAddon>4</IsAddon>
    <ModuleID>1</ModuleID>
    <ModuleName>sample string 2</ModuleName>
    <Selected>true</Selected>
  </ModulePlanDataModel>
</ArrayOfModulePlanDataModel>

multipart/form-data

Sample:
<ArrayOfModulePlanDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel"><ModulePlanDataModel><AddonPrice>5</AddonPrice><IsAddon>4</IsAddon><ModuleID>1</ModuleID><ModuleName>sample string 2</ModuleName><Selected>true</Selected></ModulePlanDataModel><ModulePlanDataModel><AddonPrice>5</AddonPrice><IsAddon>4</IsAddon><ModuleID>1</ModuleID><ModuleName>sample string 2</ModuleName><Selected>true</Selected></ModulePlanDataModel></ArrayOfModulePlanDataModel>