Retrieves the metadata of the file.
Updates the metadata of the file.
const response = await fetch('/v1/cloud-storage/metadata/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/cloud-storage/metadata/{id}', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();