PUT Locations/{id}
Updates the location.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the location. |
globally unique identifier |
Required |
Body Parameters
The new data of the location.
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "81e8a667-553a-4d6a-b70a-3c97f28612f9",
"NetworkId": "838ef925-be4f-4aab-acf6-8b5914be5165",
"Code": "sample string 3",
"Street1": "sample string 4",
"Street2": "sample string 5",
"City": "sample string 6",
"ZipCode": "sample string 7",
"StateId": "1606dc3e-ebcd-48b1-b04a-79e465320c8b",
"StateDescription": "sample string 9",
"CountryId": "390c61de-4141-40ef-94ab-c907b937a7da",
"ContactName": "sample string 11",
"ContactPhoneNumber": "sample string 12",
"CountryDescription": "sample string 13",
"LocationsIdentificationsTypesModels": [
{
"LocationId": "56184ac6-3d81-47fe-bacb-2e553ac1386b",
"IdentificationTypeModelId": "44157379-2a4a-4b81-ade1-54517c966a89",
"IdentificationType": 64
},
{
"LocationId": "56184ac6-3d81-47fe-bacb-2e553ac1386b",
"IdentificationTypeModelId": "44157379-2a4a-4b81-ade1-54517c966a89",
"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>390c61de-4141-40ef-94ab-c907b937a7da</CountryId>
<Id>81e8a667-553a-4d6a-b70a-3c97f28612f9</Id>
<LocationsIdentificationsTypesModels>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>44157379-2a4a-4b81-ade1-54517c966a89</IdentificationTypeModelId>
<LocationId>56184ac6-3d81-47fe-bacb-2e553ac1386b</LocationId>
</LocationIdentificationTypeModelDto>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>44157379-2a4a-4b81-ade1-54517c966a89</IdentificationTypeModelId>
<LocationId>56184ac6-3d81-47fe-bacb-2e553ac1386b</LocationId>
</LocationIdentificationTypeModelDto>
</LocationsIdentificationsTypesModels>
<NetworkId>838ef925-be4f-4aab-acf6-8b5914be5165</NetworkId>
<StateDescription>sample string 9</StateDescription>
<StateId>1606dc3e-ebcd-48b1-b04a-79e465320c8b</StateId>
<Street1>sample string 4</Street1>
<Street2>sample string 5</Street2>
<ZipCode>sample string 7</ZipCode>
</LocationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
State of the action.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.