//native
type Box = {
token: string;
};
/**
* Update group
* Updates a specific group. Only admins of this
group or users with admin-level permissions will be able to
use this API.
*/
export async function main(
auth: Box,
group_id: string,
fields: string | undefined,
body: {
name?: string;
provenance?: string;
external_sync_identifier?: string;
description?: string;
invitability_level?:
| "admins_only"
| "admins_and_members"
| "all_managed_users";
member_viewability_level?:
| "admins_only"
| "admins_and_members"
| "all_managed_users";
},
) {
const url = new URL(`https://api.box.com/2.0/groups/${group_id}`);
for (const [k, v] of [["fields", fields]]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "PUT",
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