//native
type Box = {
token: string;
};
/**
* Create legal hold policy
* Create a new legal hold policy.
*/
export async function main(
auth: Box,
body: {
policy_name: string;
description?: string;
filter_started_at?: string;
filter_ended_at?: string;
is_ongoing?: false | true;
},
) {
const url = new URL(`https://api.box.com/2.0/legal_hold_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