//native
type Box = {
token: string;
};
/**
* Apply watermark to folder
* Applies or update a watermark on a folder.
*/
export async function main(
auth: Box,
folder_id: string,
body: { watermark: { imprint: "default" } },
) {
const url = new URL(`https://api.box.com/2.0/folders/${folder_id}/watermark`);
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