Televisit
Overview
return org.objects.objects
.insertOne({
name: 'room',
label: 'My Televisit Room',
// apply access control lists (optional)
acl: [
'account.public.read',
'account.anonymous.read',
'role.developer.read',
'account.[ACL ID].read'
],
// apply custom properties (optional)
properties: [{
name: 'c_number',
label: 'Room Number',
type: 'Number',
indexed: true
}]
})
.execute()Last updated
Was this helpful?