GET api/GarAddress/GetApartments?StreetId={StreetId}&HouseId={HouseId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StreetId

string

None.

HouseId

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GarResultDTO
NameDescriptionTypeAdditional information
Name

string

None.

Identifier

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Identifier": "sample string 2"
  },
  {
    "Name": "sample string 1",
    "Identifier": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGarResultDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GosRegService.UL.BLL.DTO.GAR">
  <GarResultDTO>
    <Identifier>sample string 2</Identifier>
    <Name>sample string 1</Name>
  </GarResultDTO>
  <GarResultDTO>
    <Identifier>sample string 2</Identifier>
    <Name>sample string 1</Name>
  </GarResultDTO>
</ArrayOfGarResultDTO>