Files

39 lines
701 B
Markdown
Raw Permalink Normal View History

2023-02-15 09:55:01 +02:00
Generated from api_key_views.py on 2023-02-14 15:33:37.135106
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.
2022-11-08 19:25:32 +02:00
---