//native
type Box = {
token: string;
};
/**
* Create upload session
* Creates an upload session for a new file.
*/
export async function main(
auth: Box,
body: { folder_id: string; file_size: number; file_name: string },
) {
const url = new URL(`https://api.box.com/2.0/files/upload_sessions`);
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