Sorry, no results found for "".
Returns a resource object of type fieldset
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const fieldsetId = "93Y1C2sySkG4Eg0atBRIwg";7 8 const fieldset = await client.fieldsets.destroy(fieldsetId);9 10 // Check the 'Returned output' tab for the result ☝️11 console.log(fieldset);12}13 14run();
1{2 id: "93Y1C2sySkG4Eg0atBRIwg",3 title: "SEO-related fields",4 hint: "Please fill in these fields!",5 position: 1,6 collapsible: true,7 start_collapsed: false,8 item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },9}