Remove metadata instance from folder

delete
https://api.box.com/2.0
/folders/:folder_id/metadata/:scope/:template_key

Deletes a piece of folder metadata.

Request

bearer [ACCESS_TOKEN]
application/json

Path Parameters

stringin pathrequired
12345

The unique identifier that represent a folder.

The ID for any folder can be determined by visiting this folder in the web application and copying the ID from the URL. For example, for the URL https://*.app.box.com/folder/123 the folder_id is 123.

The root folder of a Box account is always represented by the ID 0.

stringin pathrequired
global

The scope of the metadata template

Value is one of global,enterprise

stringin pathrequired
properties

The name of the metadata template

Response

none

Returns an empty response when the metadata is successfully deleted.

application/jsonClient error

Returned when the request parameters are not valid. This may happen of the scope is not valid.

application/jsonClient error

Returns an error when the folder does not have an instance of the metadata template applied to it, or when the user does not have access to the folder.

  • instance_not_found - An instance of the metadata template with the given scope and templateKey was not found on this folder.
  • not_found - The folder was not found, or the user does not have access to the folder.
application/jsonClient error

Returned when the method was not allowed. This often happens when the folder ID is not valid or the root folder with ID 0.

application/jsonClient error

An unexpected client error.

delete
Remove metadata instance from folder
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/folders/4353455/metadata/enterprise_27335/blueprintTemplate" \
     -H "authorization: Bearer <ACCESS_TOKEN>"
.NET
await client.MetadataManager.DeleteFolderMetadataAsync("11111", "enterprise", "marketingCollateral");
Java
BoxFolder folder = new BoxFolder(api, "id");
folder.deleteMetadata("myMetadataTemplate");
Python
client.folder(folder_id='11111').metadata(scope='enterprise', template='myMetadata').delete()
Node
client.folders.deleteMetadata('67890', client.metadata.scopes.GLOBAL, client.metadata.templates.PROPERTIES)
	.then(() => {
		// removal succeeded — no value returned
	});
iOS
client.metadata.delete(
    forFolderWithId: "22222",
    scope: "enterprise",
    templateKey: "personnelRecord"
) { (result: Result<Void, BoxSDKError>) in
    guard case .success = result {
        print("Error deleting metadata instance")
        return
    }

    print("Metadata instance deleted")
}
TypeScript (Beta)
await client.folderMetadata.deleteFolderMetadataById(
  folder.id,
  'global' as DeleteFolderMetadataByIdScope,
  'properties'
);
Python (Beta)
client.folder_metadata.delete_folder_metadata_by_id(folder.id, DeleteFolderMetadataByIdScope.GLOBAL.value, 'properties')
.NET (Beta)
await client.FolderMetadata.DeleteFolderMetadataByIdAsync(folderId: folder.Id, scope: DeleteFolderMetadataByIdScope.Global, templateKey: "properties").ConfigureAwait(false)