const response = await fetch('https://api.shiptify.com/galaxy/shipments/{id}/metadata/{prototype_id}', {
method: 'PATCH',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"value": "text"
}),
});
const data = await response.json();