A beta version of the new Box developer documentation site is launching soon! Updated Developer Guides, modern API Reference, and AI-powered search are on the way to help you build with Box faster. Stay tuned for more updates.
Retrieve a specific metadata cascade policy assigned to a folder.
6fd4ff89-8fc1-42cf-8b29-1890dedd26d7The ID of the metadata cascade policy.
Returns a metadata cascade policy.
Returns an error when the policy can not be found or the user does not have access to the folder.
instance_not_found - The policy could not be foundnot_found - The folder could not be found or the user does not have
access to the folder.An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/metadata_cascade_policies/324324" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.metadataCascadePolicies.getMetadataCascadePolicyById(
cascadePolicyId,
);client.metadata_cascade_policies.get_metadata_cascade_policy_by_id(cascade_policy_id)await client.MetadataCascadePolicies.GetMetadataCascadePolicyByIdAsync(metadataCascadePolicyId: cascadePolicyId);try await client.metadataCascadePolicies.getMetadataCascadePolicyById(metadataCascadePolicyId: cascadePolicyId)client.getMetadataCascadePolicies().getMetadataCascadePolicyById(cascadePolicyId)await client.MetadataCascadePolicies.GetMetadataCascadePolicyByIdAsync(metadataCascadePolicyId: cascadePolicyId);await client.metadataCascadePolicies.getMetadataCascadePolicyById(
cascadePolicyId,
);{
"id": "6fd4ff89-8fc1-42cf-8b29-1890dedd26d7",
"type": "metadata_cascade_policy",
"owner_enterprise": {
"id": "690678",
"type": "enterprise"
},
"parent": {
"id": "1234567",
"type": "folder"
},
"scope": "enterprise_123456",
"templateKey": "productInfo"
}