GET plan/all

Returns a list of Plans.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Plan
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Title

string

None.

Plantype

string

None.

Plantypename

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 1",
    "title": "sample string 2",
    "plantype": "sample string 3",
    "plantypename": "sample string 4"
  },
  {
    "id": 1,
    "name": "sample string 1",
    "title": "sample string 2",
    "plantype": "sample string 3",
    "plantypename": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPlan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Plan>
    <Id>1</Id>
    <Name>sample string 1</Name>
    <Plantype>sample string 3</Plantype>
    <Plantypename>sample string 4</Plantypename>
    <Title>sample string 2</Title>
  </Plan>
  <Plan>
    <Id>1</Id>
    <Name>sample string 1</Name>
    <Plantype>sample string 3</Plantype>
    <Plantypename>sample string 4</Plantypename>
    <Title>sample string 2</Title>
  </Plan>
</ArrayOfPlan>