Sorry, no results found for "".
Returns a resource object of type white_label_settings
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const whiteLabelSettings = await client.whiteLabelSettings.find();7 8 // Check the 'Returned output' tab for the result ☝️9 console.log(whiteLabelSettings);10}11 12run();
1{2 id: "312",3 custom_i18n_messages_template_url: "https://my-app-messages.netlify.app/:locale/message.json",4}