//native
type Box = {
token: string;
};
/**
* Create metadata cascade policy
* Creates a new metadata cascade policy that applies a given
metadata template to a given folder and automatically
cascades it down to any files within that folder.
In order for the policy to be applied a metadata instance must first
be applied to the folder the policy is to be applied to.
*/
export async function main(
auth: Box,
body: {
folder_id: string;
scope: "global" | "enterprise";
templateKey: string;
},
) {
const url = new URL(`https://api.box.com/2.0/metadata_cascade_policies`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago