//native
type Box = {
token: string;
};
/**
* List folder collaborations
* Retrieves a list of pending and active collaborations for a
folder. This returns all the users that have access to the folder
or have been invited to the folder.
*/
export async function main(
auth: Box,
folder_id: string,
fields: string | undefined,
limit: string | undefined,
marker: string | undefined,
) {
const url = new URL(
`https://api.box.com/2.0/folders/${folder_id}/collaborations`,
);
for (const [k, v] of [
["fields", fields],
["limit", limit],
["marker", marker],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
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