Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Updates the properties of a location object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
PATCH businesscentralPrefix/companies({id})/locations({id})
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Content-Type | application/json |
If-Match | Required. When this request header is included and the eTag provided doesn't match the current tag on the location, the location won't be updated. |
Request body
In the request body, supply the values for relevant fields that should be updated. Existing properties that aren't included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance you shouldn't include existing values that haven't changed.
Response
If successful, this method returns a 200 OK
response code and an updated location object in the response body.
Example
Request
Here's an example of the request.
PATCH https://{businesscentralPrefix}/api/v2.0/companies({id})/locations({id})
Content-type: application/json
{
"displayName": "Main Whse."
}
Response
Here's an example of the response.
HTTP/1.1 200 OK
Content-type: application/json
{
"id": "59f029b1-508c-ed11-aada-000d3a298ab3",
"code": "MAIN",
"displayName": "Main Whse.",
"contact": "Eleanor Faulkner",
"addressLine1": "UK Campus Bldg 5",
"addressLine2": "Thames Valley Park",
"city": "Reading",
"state": "",
"country": "GB",
"postalCode": "RG6 1WG",
"phoneNumber": "+44-(0)10 5214 4987",
"email": "",
"website": ""
}
Related information
Tips for working with the APIs
location
GET location
DELETE location
POST location