The title of the fieldset
Description/contextual hint for the fieldset
Ordering index
Whether the fieldset can be collapsed or not
When fieldset is collapsible, determines if the default is to start collapsed or not
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const fieldsetId = '93Y1C2sySkG4Eg0atBRIwg';const fieldset = await client.fieldsets.update(fieldsetId, {});console.log(fieldset);}run();