GET api/GetPlans
Request Information
URI Parameters
None.
Body Parameters
ObjectNone.
Request Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of PlansModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| PLAN_NAME | string |
None. |
|
| IS_ACTIVE_FLG | byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"PLAN_NAME": "sample string 2",
"IS_ACTIVE_FLG": 64
},
{
"ID": 1,
"PLAN_NAME": "sample string 2",
"IS_ACTIVE_FLG": 64
}
]
application/xml, text/xml
Sample:
<ArrayOfPlansModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Controllers.Entity">
<PlansModel>
<ID>1</ID>
<IS_ACTIVE_FLG>64</IS_ACTIVE_FLG>
<PLAN_NAME>sample string 2</PLAN_NAME>
</PlansModel>
<PlansModel>
<ID>1</ID>
<IS_ACTIVE_FLG>64</IS_ACTIVE_FLG>
<PLAN_NAME>sample string 2</PLAN_NAME>
</PlansModel>
</ArrayOfPlansModel>