Removes the file.
Updates the cloud storage information of the file.
const response = await fetch('/v1/cloud-storage/{id}?workspaceId=text', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/cloud-storage/{id}', { method: 'PATCH', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();