Konecty Meta Access
Manage access-type metadata definitions (permissions, field access, filters, menu control).
Prerequisites
Requires admin credentials from konecty-session. User must have admin: true.
Workflow
1. Show an access profile
python3 scripts/meta_access.py show Contact Corretor
python3 scripts/meta_access.py show Contact Default2. List field permissions
python3 scripts/meta_access.py permissions Contact Corretor3. Set a field permission
python3 scripts/meta_access.py set-field Contact Corretor status --create true --read true --update false --delete false4. Set a document-level flag
python3 scripts/meta_access.py set-flag Contact Corretor --isCreatable true --isDeletable false5. Upsert full access profile
python3 scripts/meta_access.py upsert Contact Corretor --file access.jsonKey concepts
_idpattern:{Document}:access:{Name}- See references/access-architecture.md for full architecture documentation
- Permission resolution: field-specific override →
fieldDefaults→ document-level flags readFilter/updateFilter: KonFilter auto-injected on all queries for this profile$userdynamic value resolves to the current user's_idhideListsFromMenu/hidePivotsFromMenu: hide specific views from sidebar
Script reference
See scripts/meta_access.py. Stdlib only.