const response = await fetch('https://api.shiptify.com/galaxy/tracking-points/{id}/location', {
method: 'PATCH',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"country": "string",
"city": "string",
"zipcode": "string",
"address_1": "string"
}),
});
const data = await response.json();