Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Removes any classifications from a file.
This API can also be called by including the enterprise ID in the
URL explicitly, for example
/files/:id//enterprise_12345/securityClassification-6VMVochwUWo
.
12345
The unique identifier that represents a file.
The ID for any file can be determined
by visiting a file in the web application
and copying the ID from the URL. For example,
for the URL https://*.app.box.com/files/123
the file_id
is 123
.
Returns an empty response when the classification is successfully deleted.
Returned when the request parameters are not valid.
Returns an error when the file does not have any classification applied to it, or when the user does not have access to the file.
instance_not_found
- An instance of the classification metadata
template with the was not found on this file.not_found
- The file was not found, or the user does not have access
to the file.Returned when the method was not allowed.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/files/12345/metadata/enterprise/securityClassification-6VMVochwUWo" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.fileClassifications.deleteClassificationFromFile(file.id);
client.file_classifications.delete_classification_from_file(file.id)
await client.FileClassifications.DeleteClassificationFromFileAsync(fileId: file.Id);
try await client.fileClassifications.deleteClassificationFromFile(fileId: file.id)
BoxFile file = new BoxFile(api, "id");
file.deleteMetadata(Metadata.CLASSIFICATION_TEMPLATE_KEY);
client.file(file_id='11111').metadata(scope='securityClassification-6VMVochwUWo', template='myMetadata').delete()
var fileId = "0";
var fileMetadata = await client.MetadataManager.DeleteFileMetadataAsync(fileId, "enterprise", "securityClassification-6VMVochwUWo");
client.files.deleteMetadata('11111', 'enterprise', 'securityClassification-6VMVochwUWo')
.then(() => {
// removal succeeded — no value returned
});;