GET plantypes/all

Returns a list of Plan Types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PlanTypes
NameDescriptionTypeAdditional information
Type

string

None.

Value

string

None.

Uppertype

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "type": "sample string 1",
    "value": "sample string 2",
    "uppertype": "sample string 3"
  },
  {
    "type": "sample string 1",
    "value": "sample string 2",
    "uppertype": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPlanTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <PlanTypes>
    <Type>sample string 1</Type>
    <Uppertype>sample string 3</Uppertype>
    <Value>sample string 2</Value>
  </PlanTypes>
  <PlanTypes>
    <Type>sample string 1</Type>
    <Uppertype>sample string 3</Uppertype>
    <Value>sample string 2</Value>
  </PlanTypes>
</ArrayOfPlanTypes>