GET api/EngetCaste

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CasteMaster
NameDescriptionTypeAdditional information
CasteId

integer

None.

CasteCategoryId

integer

None.

CasteName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "casteId": 1,
    "casteCategoryId": 2,
    "casteName": "sample string 3"
  },
  {
    "casteId": 1,
    "casteCategoryId": 2,
    "casteName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCasteMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.App_Start.Entity">
  <CasteMaster>
    <CasteCategoryId>2</CasteCategoryId>
    <CasteId>1</CasteId>
    <CasteName>sample string 3</CasteName>
  </CasteMaster>
  <CasteMaster>
    <CasteCategoryId>2</CasteCategoryId>
    <CasteId>1</CasteId>
    <CasteName>sample string 3</CasteName>
  </CasteMaster>
</ArrayOfCasteMaster>