GET Api/Utility/GetAddresses/{profileId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
profileId

string

Required

Body Parameters

None.

Response Information

Resource Description

AddressDto
NameDescriptionTypeAdditional information
AddressId

integer

None.

ProfileId

string

None.

TypeOfAddressId

integer

None.

CountryId

integer

None.

RegionId

integer

None.

DistrictId

integer

None.

CommunityId

integer

None.

TaxOfficeId

integer

None.

City

string

None.

Street

string

None.

HouseNr

string

None.

FlatNr

string

None.

PostCode

string

None.

IsConfirmed

boolean

None.

IsOwnAccommodation

boolean

None.

TaxOfficeName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "addressId": 1,
  "profileId": "sample string 2",
  "typeOfAddressId": 3,
  "countryId": 4,
  "regionId": 1,
  "districtId": 1,
  "communityId": 1,
  "taxOfficeId": 1,
  "city": "sample string 5",
  "street": "sample string 6",
  "houseNr": "sample string 7",
  "flatNr": "sample string 8",
  "postCode": "sample string 9",
  "isConfirmed": true,
  "isOwnAccommodation": true,
  "taxOfficeName": "sample string 11"
}

multipart/form-data

Sample:
{"addressId":1,"profileId":"sample string 2","typeOfAddressId":3,"countryId":4,"regionId":1,"districtId":1,"communityId":1,"taxOfficeId":1,"city":"sample string 5","street":"sample string 6","houseNr":"sample string 7","flatNr":"sample string 8","postCode":"sample string 9","isConfirmed":true,"isOwnAccommodation":true,"taxOfficeName":"sample string 11"}

application/xml, text/xml

Sample:
<AddressDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <AddressId>1</AddressId>
  <ProfileId>sample string 2</ProfileId>
  <TypeOfAddressId>3</TypeOfAddressId>
  <CountryId>4</CountryId>
  <RegionId>1</RegionId>
  <DistrictId>1</DistrictId>
  <CommunityId>1</CommunityId>
  <TaxOfficeId>1</TaxOfficeId>
  <City>sample string 5</City>
  <Street>sample string 6</Street>
  <HouseNr>sample string 7</HouseNr>
  <FlatNr>sample string 8</FlatNr>
  <PostCode>sample string 9</PostCode>
  <IsConfirmed>true</IsConfirmed>
  <IsOwnAccommodation>true</IsOwnAccommodation>
  <TaxOfficeName>sample string 11</TaxOfficeName>
</AddressDto>