Retrieves a list of all the metadata cascade policies
that are applied to a given folder. This can not be used on the root
folder with ID 0
.
31232
Specifies which folder to return policies for. This can not be used on the
root folder with ID 0
.
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii
Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination.
This requires usemarker
to be set to true
.
1000
0
The offset of the item at which to begin the response.
31232
The ID of the enterprise ID for which to find metadata cascade policies. If not specified, it defaults to the current enterprise.
Returns a list of metadata cascade policies
Returns an error when any of the parameters are not in a valid format.
Returns an error when the folder can not be accessed. This error often
happens when accessing the root folder with ID 0
.
Returns an error when the folder can not be found or the user does not have access to the folder.
not_found
- The folder could not be found or the user does not have
access to the folder.An unexpected client error.
curl -X GET https://api.box.com/2.0/metadata_cascade_policies?folder_id=31232 \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
BoxCollectionMarkerBased<BoxMetadataCascadePolicy> metadataCascadePolicies = await client.MetadataCascadePolicyManager.GetAllMetadataCascadePoliciesAsync("12345");
String folderID = "2222";
BoxFolder folder = new BoxFolder(api, folderID);
Iterable<BoxMetadataCascadePolicy.Info> metadataCascadePolicies = folder.getMetadataCascadePolicies();
for (BoxMetadataCascadePolicy.Info policyInfo : metadataCascadePolicies) {
// take action on policy here
}
cascade_policies = client.folder(folder_id='22222').get_metadata_cascade_policies()
for policy in cascade_policies:
print('Metadata template {1} is cascaded'.format(policy.templateKey))
var folderID = '22222';
client.metadata.getCascadePolicies(folderID)
.then(cascadePolicies => {
/* cascadePolicies -> {
limit: 100,
entries: [
{
id: '84113349-794d-445c-b93c-d8481b223434',
type: 'metadata_cascade_policy',
owner_enterprise: {
type: 'enterprise',
id: '11111'
},
parent: {
type: 'folder',
id: '22222'
},
scope: 'enterprise_11111',
templateKey: 'testTemplate'
}
],
next_marker: null,
prev_marker: null
}
*/
});