Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Delete a metadata template and its instances. This deletion is permanent and can not be reversed.
global
The scope of the metadata template
Value is one of global
,enterprise
properties
The name of the metadata template
Returns an empty response when the metadata template is successfully deleted.
Request body does not contain a valid metadata schema.
Request body contains a scope that the user is not allowed to create a template for.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/metadata_templates/enterprise/blueprintTemplate/schema" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.metadataTemplates.deleteMetadataTemplate(
'enterprise' as DeleteMetadataTemplateScope,
template.templateKey!,
);
client.metadata_templates.delete_metadata_template(
DeleteMetadataTemplateScope.ENTERPRISE.value, template.template_key
)
await client.MetadataTemplates.DeleteMetadataTemplateAsync(scope: DeleteMetadataTemplateScope.Enterprise, templateKey: NullableUtils.Unwrap(template.TemplateKey));
try await client.metadataTemplates.deleteMetadataTemplate(scope: DeleteMetadataTemplateScope.enterprise, templateKey: templateKey)
MetadataTemplate.deleteMetadataTemplate(api, "enterprise", "templateName");
client.metadata_template('enterprise', 'employeeRecord').delete()
client.metadata.deleteTemplate('enterprise', 'testtemplate', callback);
client.metadata.deleteTemplate(
scope: "enterprise",
templateKey: "personnelRecord"
) { (result: Result<Void, BoxSDKError>) in
guard case .success = result {
print("Error deleting metadata template")
return
}
print("Metadata template deleted")
}