import { Novu } from "@novu/api";
const novu = new Novu({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await novu.organizations.branding.update({
logo: "<value>",
color: "fuchsia",
fontColor: "<value>",
contentBackground: "<value>",
});
// Handle the result
console.log(result)
}
run();