Show examples in:
Retrieve white-label settings

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.find();
console.log(whiteLabelSettings);
}
run();