Delete storage unit
DELETE
/partners/{id}/locations/{location_id}/storage_units/{unit_id}
const url = 'https://example.com/partners/example/locations/example/storage_units/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/partners/example/locations/example/storage_units/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
location_id
required
string
unit_id
required
string