PUT private-location/update/{location_id}
Updates an existing private location for the current customer.
URL Parameters
Name | Description |
---|---|
location_id | The ID of the location to edit. |
Remarks
Use GET private locations route to get the list of private locations and values applicable for location_id.Use Country Details route to get the list of Country object having values applicable for Country, State, City.
The
Request example and description
curl --request PUT "https://api-asm1.apica.io/v3/private-location/update/{location_id}?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E" --header "Content-Type: application/json" --data-raw "{ \"Enabled\": true, \"Name\": \"sample-string\", \"Country\": \"Sweden\", \"State\": \"NA\", \"City\": \"sample-string\" }"
Name | Type | Required | Description |
---|---|---|---|
Enabled | Boolean | No |
Indicates whether the private location is enabled. |
Name | String | Yes |
The name of the private location. |
Country | String | Yes |
The country of the private location. |
State | String | No |
The state of the private location. |
City | String | Yes |
The city of the private location. |
Response body model example and description
Response indicating the result of the operation.