Larson notes. Some changes to templates

This commit is contained in:
Norm Rasmussen
2023-05-18 15:55:20 -04:00
parent d3d5b157a7
commit 6063458ed4
12 changed files with 141 additions and 42 deletions

View File

@ -4,27 +4,39 @@ import Apikeys
apikey = Apikeys.anthology
groups_to_create = [
'Engage', 'Encompass', 'Reach',
'Student', 'Learn', 'Baseline', 'Ally',
'Milestone','Raise', 'Accreditation',
'Program Review', 'Portfolio', 'Outcomes',
'Engage-Campus-wide Elections',
'Engage-Co-Curricular Paths', 'Engage-ECIA',
'Engage-Rooms and Reservations', 'Learn-Bb Reporting',
'Learn-A4L']
"Engage",
"Encompass",
"Reach",
"Student",
"Learn",
"Baseline",
"Ally",
"Milestone",
"Raise",
"Accreditation",
"Program Review",
"Portfolio",
"Outcomes",
"Engage-Campus-wide Elections",
"Engage-Co-Curricular Paths",
"Engage-ECIA",
"Engage-Rooms and Reservations",
"Learn-Bb Reporting",
"Learn-A4L",
]
url = "https://api.northpass.com/v2/bulk/groups"
headers = {
"accept": "application/json",
"content-type": "application/json",
"X-Api-Key": apikey,
}
"accept": "application/json",
"content-type": "application/json",
"X-Api-Key": apikey,
}
payload2 = []
for group in groups_to_create:
payload2.append({"name": group})
payload = {"data": {"attributes": {"groups": payload2}}}
print(payload)
# response = requests.post(url, json=payload, headers=headers)
# print(response.text)
# print(payload)
response = requests.post(url, json=payload, headers=headers)
print(response.text)
# print(response)