Delete all classifications

delete
https://api.box.com/2.0
/metadata_templates/enterprise/securityClassification-6VMVochwUWo/schema

Delete all classifications by deleting the classification metadata template.

Response

none

Returns an empty response when the metadata template for classifications is successfully deleted.

application/jsonClient error

An unexpected client error.

delete
Delete all classifications
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -i -X DELETE "https://api.box.com/2.0/metadata_templates/enterprise/securityClassification-6VMVochwUWo/schema" \
     -H "Authorization: Bearer <ACCESS_TOKEN>"
.NET
var isDeleted = await client.MetadataManager.DeleteMetadataTemplate("enterprise", "securityClassification-6VMVochwUWo");
Java
MetadataTemplate.deleteMetadataTemplate(api, Metadata.ENTERPRISE_METADATA_SCOPE, Metadata.CLASSIFICATION_TEMPLATE_KEY);
Python
client.metadata_template('enterprise', 'securityClassification-6VMVochwUWo').delete()
Node
client.metadata.deleteTemplate('enterprise', 'securityClassification-6VMVochwUWo', callback);