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": "78350eab-9e75-40e9-936a-4569ad0422e2",
"NetworkId": "b6cd5458-1024-4373-a9b2-470894512096",
"Code": "sample string 3",
"Street1": "sample string 4",
"Street2": "sample string 5",
"City": "sample string 6",
"ZipCode": "sample string 7",
"StateId": "639978b6-e951-400b-ac8e-1bf08d46877e",
"StateDescription": "sample string 9",
"CountryId": "325ccefa-fa9f-4303-bb15-8e79b9b71b9c",
"ContactName": "sample string 11",
"ContactPhoneNumber": "sample string 12",
"CountryDescription": "sample string 13",
"LocationsIdentificationsTypesModels": [
{
"LocationId": "6af0b337-6b70-46b0-8567-c7c3b9e801f1",
"IdentificationTypeModelId": "49874524-8eb9-46a5-a0f6-2f38fddebc22",
"IdentificationType": 64
},
{
"LocationId": "6af0b337-6b70-46b0-8567-c7c3b9e801f1",
"IdentificationTypeModelId": "49874524-8eb9-46a5-a0f6-2f38fddebc22",
"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>325ccefa-fa9f-4303-bb15-8e79b9b71b9c</CountryId>
<Id>78350eab-9e75-40e9-936a-4569ad0422e2</Id>
<LocationsIdentificationsTypesModels>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>49874524-8eb9-46a5-a0f6-2f38fddebc22</IdentificationTypeModelId>
<LocationId>6af0b337-6b70-46b0-8567-c7c3b9e801f1</LocationId>
</LocationIdentificationTypeModelDto>
<LocationIdentificationTypeModelDto>
<IdentificationType>64</IdentificationType>
<IdentificationTypeModelId>49874524-8eb9-46a5-a0f6-2f38fddebc22</IdentificationTypeModelId>
<LocationId>6af0b337-6b70-46b0-8567-c7c3b9e801f1</LocationId>
</LocationIdentificationTypeModelDto>
</LocationsIdentificationsTypesModels>
<NetworkId>b6cd5458-1024-4373-a9b2-470894512096</NetworkId>
<StateDescription>sample string 9</StateDescription>
<StateId>639978b6-e951-400b-ac8e-1bf08d46877e</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.