Delete a metadata template
Delete a metadata template
Deleting a metadata template can be achieved by calling the DELETE /metadata_templates/enterprise/:templateKey/schema
API.
cURL
curl -X DELETE https://api.box.com/2.0/metadata_templates/enterprise/blueprintTemplate/schema \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
Java
MetadataTemplate.deleteMetadataTemplate(api, "enterprise", "templateName");
Python
client.metadata_template('enterprise', 'employeeRecord').delete()
Node
client.metadata.deleteTemplate('enterprise', 'testtemplate', callback);
iOS
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")
}
This API returns a 204 No Content
API response with no response body when
the template has been successfully deleted. This API also removes all the
template instances from any files and folders.
Only templates created within the enterprise
scope can be deleted.