GET api/Registration/getAllRecords/SubCaste/{Key}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Key

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BRSubCasteDto
NameDescriptionTypeAdditional information
SubCasteId

decimal number

None.

SubCasteName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SubCasteId": 1.0,
    "SubCasteName": "sample string 2"
  },
  {
    "SubCasteId": 1.0,
    "SubCasteName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRegistrationController.BRSubCasteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.API.Controllers">
  <RegistrationController.BRSubCasteDto>
    <SubCasteId>1</SubCasteId>
    <SubCasteName>sample string 2</SubCasteName>
  </RegistrationController.BRSubCasteDto>
  <RegistrationController.BRSubCasteDto>
    <SubCasteId>1</SubCasteId>
    <SubCasteName>sample string 2</SubCasteName>
  </RegistrationController.BRSubCasteDto>
</ArrayOfRegistrationController.BRSubCasteDto>