GET Locations/{id}
Gets a location by it's ID, represented as LocationDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the location. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The location data.
LocationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| NetworkId | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Street1 | string |
None. |
|
| Street2 | string |
None. |
|
| City | string |
None. |
|
| ZipCode | string |
None. |
|
| StateId | globally unique identifier |
None. |
|
| StateDescription | string |
None. |
|
| CountryId | globally unique identifier |
None. |
|
| ContactName | string |
None. |
|
| ContactPhoneNumber | string |
None. |
|
| CountryDescription | string |
None. |
|
| LocationsIdentificationsTypesModels | Collection of LocationIdentificationTypeModelDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "126a3204-d12d-48a8-b63e-98b2ad14c698",
"NetworkId": "4a4f76bb-dd58-4508-9443-22c6252e40f7",
"Code": "sample string 3",
"Street1": "sample string 4",
"Street2": "sample string 5",
"City": "sample string 6",
"ZipCode": "sample string 7",
"StateId": "d0184e90-5273-4348-8ae5-f7cc0e40f33d",
"StateDescription": "sample string 9",
"CountryId": "ba1b08c5-a3f8-42d2-8869-3146c0de4574",
"ContactName": "sample string 11",
"ContactPhoneNumber": "sample string 12",
"CountryDescription": "sample string 13",
"LocationsIdentificationsTypesModels": [
{
"LocationId": "9408d361-c77e-4d4b-ab4b-d4ef097baef1",
"IdentificationTypeModelId": "6d80e1ef-7cb5-4ede-b7f2-6a164abad904",
"IdentificationType": 64
},
{
"LocationId": "9408d361-c77e-4d4b-ab4b-d4ef097baef1",
"IdentificationTypeModelId": "6d80e1ef-7cb5-4ede-b7f2-6a164abad904",
"IdentificationType": 64
}
]
}
application/xml, text/xml
Sample:
<LocationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<City>sample string 6</City>
<Code>sample string 3</Code>
<ContactName>sample string 11</ContactName>
<ContactPhoneNumber>sample string 12</ContactPhoneNumber>
<CountryDescription>sample string 13</CountryDescription>
<CountryId>ba1b08c5-a3f8-42d2-8869-3146c0de4574</CountryId>
<Id>126a3204-d12d-48a8-b63e-98b2ad14c698</Id>
<LocationsIdentificationsTypesModels>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>6d80e1ef-7cb5-4ede-b7f2-6a164abad904</IdentificationTypeModelId>
<LocationId>9408d361-c77e-4d4b-ab4b-d4ef097baef1</LocationId>
</LocationIdentificationTypeModelDto>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>6d80e1ef-7cb5-4ede-b7f2-6a164abad904</IdentificationTypeModelId>
<LocationId>9408d361-c77e-4d4b-ab4b-d4ef097baef1</LocationId>
</LocationIdentificationTypeModelDto>
</LocationsIdentificationsTypesModels>
<NetworkId>4a4f76bb-dd58-4508-9443-22c6252e40f7</NetworkId>
<StateDescription>sample string 9</StateDescription>
<StateId>d0184e90-5273-4348-8ae5-f7cc0e40f33d</StateId>
<Street1>sample string 4</Street1>
<Street2>sample string 5</Street2>
<ZipCode>sample string 7</ZipCode>
</LocationDto>