Minimum Role Permission
Lists: Manager
The data for the new list
Minimum Role Permission
Lists: Read Only
Search options
Minimum Role Permission
Lists: Manager
The data for the list to update
const data = {
id: 1,
name: 'my list',
organisationId: 'abc123',
environments: [
{
options: [
{
label: 'One',
value: '1',
},
{
label: 'Two',
value: '2',
},
{
label: 'Three',
value: '2',
},
],
formsAppEnvironmentId: 1,
},
],
type: 'STATIC',
}
const list = await formElementListsClient.updateFormElementList(data)
// Use list here...
Example