Update white-label settings
Body Parameters
custom_i18n_messages_template_url Optional null, string Example: "https://my-app-messages.netlify.app/:locale/message.json"
URL of custom I18n messages. The :locale placeholder represents the current DatoCMS UI locale.
Returns
Returns a
white_label_settings resource object.
Examples
Example Basic example
import { buildClient } from '@datocms/cma-client-node';
async function run() {
const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });
const whiteLabelSettings = await client.whiteLabelSettings.update({});
console.log(whiteLabelSettings);
}
run();