Collection of media vault delete requests which uniquely identifies media vault resources that need to be deleted.
Returns a promise that is resolved once the update action has been performed; this action updates specified media vault resources.
A collection of media vault objects used to update specified media vault resources.
A promise that is resolved once the update action has been performed.
Generated using TypeDoc
Returns a promise that is resolved once the remove action has been performed. This action will remove media vault resources from the system if successfully completed. If derived resource's format is passed, such as
width
andheight
for the image type of media vault resource, the operation will remove just derived resource. Otherwise, specified media vault and all its accompanying derived resources will be removed from the system.// Remove original media vault resources mediaVaultBatchClient.remove([{ id: '' }])
.then(function (data) {
// perform success action here
},
function (response, status, headers, config) {
// perform error handling here
});
// Remove derived media vault resources
mediaVaultBatchClient.remove([{ id: '', fileFormat: { width: , height: } }])
.then(function (data) {
// perform success action here
},
function (response, status, headers, config) {
// perform error handling here
});