GET api/GetBhoomiData?cadastraliId={cadastraliId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cadastraliId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BhoomiLandCodeData
NameDescriptionTypeAdditional information
LandCode

string

None.

Village

integer

None.

SurveyNo

string

None.

TotalArea

decimal number

None.

Owners

string

None.

Crops

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LandCode": "sample string 1",
    "Village": 1,
    "SurveyNo": "sample string 2",
    "TotalArea": 1.1,
    "Owners": "sample string 3",
    "Crops": "sample string 4"
  },
  {
    "LandCode": "sample string 1",
    "Village": 1,
    "SurveyNo": "sample string 2",
    "TotalArea": 1.1,
    "Owners": "sample string 3",
    "Crops": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBhoomiLandCodeData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WDD_Models.Models.Bhoomi">
  <BhoomiLandCodeData>
    <Crops>sample string 4</Crops>
    <LandCode>sample string 1</LandCode>
    <Owners>sample string 3</Owners>
    <SurveyNo>sample string 2</SurveyNo>
    <TotalArea>1.1</TotalArea>
    <Village>1</Village>
  </BhoomiLandCodeData>
  <BhoomiLandCodeData>
    <Crops>sample string 4</Crops>
    <LandCode>sample string 1</LandCode>
    <Owners>sample string 3</Owners>
    <SurveyNo>sample string 2</SurveyNo>
    <TotalArea>1.1</TotalArea>
    <Village>1</Village>
  </BhoomiLandCodeData>
</ArrayOfBhoomiLandCodeData>