Cloud storage

DELETE/v1/cloud-storage/{id}
Path parameters
id*string
Query parameters
Header parameters
Response

Removes the file.

Request
const response = await fetch('/v1/cloud-storage/{id}', {
    method: 'DELETE',
    headers: {},
});
const data = await response.json();

PATCH/v1/cloud-storage/{id}
Path parameters
id*string
Header parameters
Body
UpdateCloudStorageDto (object)
Response

Updates the cloud storage information of the file.

Request
const response = await fetch('/v1/cloud-storage/{id}', {
    method: 'PATCH',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();