Update a Location
Learn about updating a location.
Update a location
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/locations/{id} | PUT | id | id , taxAreaId , locationCode , name , owningPartyId , postalAddress , registrationCode , startDate |
This request updates a location configuration. All elements are replaced.
Sample request - Update location
{
"taxAreaId": "string",
"locationCode": "string",
"name": "string",
"owningPartyId": "123e4567-e89b-12d3-a456-426614174000",
"postalAddress": {
"city": "string",
"country": "string",
"mainDivision": "string",
"postalCode": "string",
"streetAddress1": "string",
"streetAddress2": "string",
"subDivision": "string"
},
"registrationCode": "string",
"startDate": "2022-01-01",
"endDate": "2022-12-01"
}
Updated 2 months ago