GET Locations/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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": "531442e5-91b6-4b51-bfc2-e09d28301f24",
"NetworkId": "832cec53-6003-404a-9610-dbd59e48e8ac",
"Code": "sample string 3",
"Street1": "sample string 4",
"Street2": "sample string 5",
"City": "sample string 6",
"ZipCode": "sample string 7",
"StateId": "2c4ee401-737a-42ea-bc9b-328a20985330",
"StateDescription": "sample string 9",
"CountryId": "e1c6ff7c-0f22-4054-8bf8-ea8c0d5a13c7",
"ContactName": "sample string 11",
"ContactPhoneNumber": "sample string 12",
"CountryDescription": "sample string 13",
"LocationsIdentificationsTypesModels": [
{
"LocationId": "4f1fbaef-32e8-462b-9ee5-71c536ddfe1e",
"IdentificationTypeModelId": "524f6f87-ad00-4b4a-a3ba-64ebfa306f43",
"IdentificationType": 64
},
{
"LocationId": "4f1fbaef-32e8-462b-9ee5-71c536ddfe1e",
"IdentificationTypeModelId": "524f6f87-ad00-4b4a-a3ba-64ebfa306f43",
"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>e1c6ff7c-0f22-4054-8bf8-ea8c0d5a13c7</CountryId>
<Id>531442e5-91b6-4b51-bfc2-e09d28301f24</Id>
<LocationsIdentificationsTypesModels>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>524f6f87-ad00-4b4a-a3ba-64ebfa306f43</IdentificationTypeModelId>
<LocationId>4f1fbaef-32e8-462b-9ee5-71c536ddfe1e</LocationId>
</LocationIdentificationTypeModelDto>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>524f6f87-ad00-4b4a-a3ba-64ebfa306f43</IdentificationTypeModelId>
<LocationId>4f1fbaef-32e8-462b-9ee5-71c536ddfe1e</LocationId>
</LocationIdentificationTypeModelDto>
</LocationsIdentificationsTypesModels>
<NetworkId>832cec53-6003-404a-9610-dbd59e48e8ac</NetworkId>
<StateDescription>sample string 9</StateDescription>
<StateId>2c4ee401-737a-42ea-bc9b-328a20985330</StateId>
<Street1>sample string 4</Street1>
<Street2>sample string 5</Street2>
<ZipCode>sample string 7</ZipCode>
</LocationDto>