Home / API / ASP.NET Web API Details

GET api/v1/Account/GetAddressByAddressid?addressid={addressid}

Description

Get Address Info by Address Id

Request Information

Parameters

NameDescriptionAdditional information
addressid
Address Id

Define this parameter in the request URI.

Response Information

Address Information

Response body formats

application/json, text/json

Sample:
{
  "addressid": 1,
  "companyid": 2,
  "companyname": "sample string 3",
  "streetnumber": "sample string 4",
  "predirection": "sample string 5",
  "streetname": "sample string 6",
  "streetsuffix": "sample string 7",
  "postdirection": "sample string 8",
  "secondaryaddress": "sample string 9",
  "city": "sample string 10",
  "state": "sample string 11",
  "postalcode": "sample string 12",
  "postalcodeex": "sample string 13",
  "countryid": 14,
  "utctimestamp": "2025-02-23T06:36:17.9694249+00:00",
  "utclastchanged": "2025-02-23T06:36:17.9694249+00:00",
  "lastchangedby": "sample string 16",
  "validationnum": "sample string 17",
  "localeid": 18,
  "suffixid": 19,
  "latitude": 20.0,
  "longitude": 21.0,
  "latlngaccuracy": 64,
  "deliverypoint": "sample string 23",
  "checkdigit": "sample string 24",
  "incitylimits": true,
  "owner": 26,
  "TAID": "sample string 27"
}

application/xml, text/xml

Sample:
<addressmodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <TAID>sample string 27</TAID>
  <addressid>1</addressid>
  <checkdigit>sample string 24</checkdigit>
  <city>sample string 10</city>
  <companyid>2</companyid>
  <companyname>sample string 3</companyname>
  <countryid>14</countryid>
  <deliverypoint>sample string 23</deliverypoint>
  <incitylimits>true</incitylimits>
  <lastchangedby>sample string 16</lastchangedby>
  <latitude>20</latitude>
  <latlngaccuracy>64</latlngaccuracy>
  <localeid>18</localeid>
  <longitude>21</longitude>
  <owner>26</owner>
  <postalcode>sample string 12</postalcode>
  <postalcodeex>sample string 13</postalcodeex>
  <postdirection>sample string 8</postdirection>
  <predirection>sample string 5</predirection>
  <secondaryaddress>sample string 9</secondaryaddress>
  <state>sample string 11</state>
  <streetname>sample string 6</streetname>
  <streetnumber>sample string 4</streetnumber>
  <streetsuffix>sample string 7</streetsuffix>
  <suffixid>19</suffixid>
  <utclastchanged>2025-02-23T06:36:17.9694249+00:00</utclastchanged>
  <utctimestamp>2025-02-23T06:36:17.9694249+00:00</utctimestamp>
  <validationnum>sample string 17</validationnum>
</addressmodel>