GET plan/{id}
Finds a Plan by Id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Plan| Name | Description | Type | Additional 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"
}
application/xml, text/xml
Sample:
<Plan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <Id>1</Id> <Name>sample string 1</Name> <Plantype>sample string 3</Plantype> <Plantypename>sample string 4</Plantypename> <Title>sample string 2</Title> </Plan>