Upload files to "/"

This commit is contained in:
2025-08-03 21:22:55 +00:00
parent 8ad7216aa2
commit dfe9952b20
5 changed files with 127 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#
# Print organization info
#
from api_fns import *
r = get_org()
if r.status_code == requests.codes.ok:
for organization in r.json():
print('Org ({}) name --> {} -- parent({})'.format(organization['id'],
organization['displayName'], organization['parentId']))
# pp_json(organization)
else:
print_err(r)