Retrieves all metadata for a given folder. This can not be used on the root
folder with ID 0.
This operation is performed by calling function getFolderMetadata.
See the endpoint docs at API Reference.
await client.folderMetadata.getFolderMetadata(folder.id);
string
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. Example: “12345”GetFolderMetadataOptionalsInputThis function returns a value of type Metadatas.
Returns all the metadata associated with a folder.
This API does not support pagination and will therefore always return all of the metadata associated to the folder.
Retrieves the instance of a metadata template that has been applied to a
folder. This can not be used on the root folder with ID 0.
This operation is performed by calling function getFolderMetadataById.
See the endpoint docs at API Reference.
await client.folderMetadata.getFolderMetadataById(
folder.id,
'global' as GetFolderMetadataByIdScope,
'properties',
);
string
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. Example: “12345”GetFolderMetadataByIdScope
string
GetFolderMetadataByIdOptionalsInputThis function returns a value of type MetadataFull.
An instance of the metadata template that includes additional “key:value” pairs defined by the user or an application.
Applies an instance of a metadata template to a folder.
In most cases only values that are present in the metadata template
will be accepted, except for the global.properties template which accepts
any key-value pair.
To display the metadata template in the Box web app the enterprise needs to be configured to enable Cascading Folder Level Metadata for the user in the admin console.
This operation is performed by calling function createFolderMetadataById.
See the endpoint docs at API Reference.
await client.folderMetadata.createFolderMetadataById(
folder.id,
'enterprise' as CreateFolderMetadataByIdScope,
templateKey,
{
['name']: 'John',
['age']: 23,
['birthDate']: '2001-01-03T02:20:50.520Z',
['countryCode']: 'US',
['sports']: ['basketball', 'tennis'],
},
);
string
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. Example: “12345”CreateFolderMetadataByIdScope
string
CreateFolderMetadataByIdRequestBody
CreateFolderMetadataByIdOptionalsInputThis function returns a value of type MetadataFull.
Returns the instance of the template that was applied to the folder, including the data that was applied to the template.
Updates a piece of metadata on a folder.
The metadata instance can only be updated if the template has already been applied to the folder before. When editing metadata, only values that match the metadata template schema will be accepted.
The update is applied atomically. If any errors occur during the application of the operations, the metadata instance will not be changed.
This operation is performed by calling function updateFolderMetadataById.
See the endpoint docs at API Reference.
await client.folderMetadata.updateFolderMetadataById(
folder.id,
'enterprise' as UpdateFolderMetadataByIdScope,
templateKey,
[
{
op: 'replace' as UpdateFolderMetadataByIdRequestBodyOpField,
path: '/name',
value: 'Jack',
} satisfies UpdateFolderMetadataByIdRequestBody,
{
op: 'replace' as UpdateFolderMetadataByIdRequestBodyOpField,
path: '/age',
value: 24,
} satisfies UpdateFolderMetadataByIdRequestBody,
{
op: 'replace' as UpdateFolderMetadataByIdRequestBodyOpField,
path: '/birthDate',
value: '2000-01-03T02:20:50.520Z',
} satisfies UpdateFolderMetadataByIdRequestBody,
{
op: 'replace' as UpdateFolderMetadataByIdRequestBodyOpField,
path: '/countryCode',
value: 'CA',
} satisfies UpdateFolderMetadataByIdRequestBody,
{
op: 'replace' as UpdateFolderMetadataByIdRequestBodyOpField,
path: '/sports',
value: ['football'],
} satisfies UpdateFolderMetadataByIdRequestBody,
],
);
string
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. Example: “12345”UpdateFolderMetadataByIdScope
string
readonly UpdateFolderMetadataByIdRequestBody[]
UpdateFolderMetadataByIdOptionalsInputThis function returns a value of type MetadataFull.
Returns the updated metadata template instance, with the custom template data included.
Deletes a piece of folder metadata.
This operation is performed by calling function deleteFolderMetadataById.
See the endpoint docs at API Reference.
await client.folderMetadata.deleteFolderMetadataById(
folder.id,
'enterprise' as DeleteFolderMetadataByIdScope,
templateKey,
);
string
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. Example: “12345”DeleteFolderMetadataByIdScope
string
DeleteFolderMetadataByIdOptionalsInputThis function returns a value of type undefined.
Returns an empty response when the metadata is successfully deleted.