API for managing tenant configuration groups and settings
Get settings for a specific configuration group
| groupId required | string Example: audit.authority Configuration group ID |
{- "settings": [
- {
- "key": "enabled",
- "value": true,
- "type": "BOOLEAN",
- "description": "Defines if the authority audit is enabled",
- "groupId": "audit.authority",
- "metadata": {
- "createdDate": "2026-01-13T01:53:39.496+00:00",
- "createdByUserId": "00000000-0000-0000-0000-000000000000",
- "updatedDate": "2026-01-13T01:53:39.496+00:00",
- "updatedByUserId": "00000000-0000-0000-0000-000000000000"
}
}
], - "totalRecords": 3
}Update a specific setting in a configuration group
| groupId required | string Example: audit.authority Configuration group ID |
| key required | string Example: enabled Setting key |
| value | object Value of the setting (type depends on the type field) |
| description | string Description of what the setting controls |
{- "value": true,
- "description": "Defines if the authority audit is enabled"
}{- "key": "enabled",
- "value": true,
- "type": "BOOLEAN",
- "description": "Defines if the authority audit is enabled",
- "groupId": "audit.authority",
- "metadata": {
- "createdDate": "2026-01-13T01:53:39.496+00:00",
- "createdByUserId": "00000000-0000-0000-0000-000000000000",
- "updatedDate": "2026-01-13T01:53:39.496+00:00",
- "updatedByUserId": "00000000-0000-0000-0000-000000000000"
}
}