Delete a DrsObject.
DELETE
/objects/{object_id}
const url = 'https://raw.githubusercontent.com/ga4gh/drs/v1/objects/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://raw.githubusercontent.com/ga4gh/drs/v1/objects/exampleReturns object metadata, and a list of access methods that can be used to fetch object bytes.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” object_id
required
string format: path
DrsObject identifier
Responses
Section titled “ Responses ”The DrsObject was found successfully
Media type application/json
object
Example generated
{}