Files

39 lines
701 B
Markdown
Raw Permalink Normal View History

2023-04-12 14:41:30 +03:00
Generated from api_key_views.py on 2023-04-12 10:09:44.563425
2021-10-15 03:25:38 -05:00
# peeringdb_server.api_key_views
Views for organization api key management.
# Functions
---
## add_user_key
2022-01-11 08:56:47 -06:00
`def add_user_key(*args, **kwds)`
2021-10-15 03:25:38 -05:00
Create a new User API key.
Requires a name and a readonly boolean.
---
## load_all_key_permissions
`def load_all_key_permissions(org)`
Returns dict of all users with all their permissions for
the given org.
---
## remove_user_key
2022-01-11 08:56:47 -06:00
`def remove_user_key(*args, **kwds)`
2021-10-15 03:25:38 -05:00
Revoke user api key.
---
## save_key_permissions
`def save_key_permissions(org, key, perms)`
Save key permissions for the specified org and key.
Perms should be a dict of permissioning ids and permission levels.
2023-05-16 21:04:05 +03:00
---