//native
type Box = {
token: string;
};
/**
* Add domain to list of allowed collaboration domains
* Creates a new entry in the list of allowed domains to allow
collaboration for.
*/
export async function main(
auth: Box,
body: { domain: string; direction: "inbound" | "outbound" | "both" },
) {
const url = new URL(
`https://api.box.com/2.0/collaboration_whitelist_entries`,
);
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