//native
type Box = {
token: string;
};
/**
* Create shield information barrier report
* Creates a shield information barrier report for a given barrier.
*/
export async function main(
auth: Box,
body: {
shield_information_barrier?: {
id?: string;
type?: "shield_information_barrier";
};
},
) {
const url = new URL(
`https://api.box.com/2.0/shield_information_barrier_reports`,
);
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