//native
type Box = {
token: string;
};
/**
* Delete user
* Deletes a user. By default this will fail if the user
still owns any content. Move their owned content first
before proceeding, or use the `force` field to delete
the user and their files.
*/
export async function main(
auth: Box,
user_id: string,
notify: string | undefined,
force: string | undefined,
) {
const url = new URL(`https://api.box.com/2.0/users/${user_id}`);
for (const [k, v] of [
["notify", notify],
["force", force],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "DELETE",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago