diff --git a/CustomerNotes/BigIdeasLearning.md b/CustomerNotes/BigIdeasLearning.md index e6503b57..6eb84627 100644 --- a/CustomerNotes/BigIdeasLearning.md +++ b/CustomerNotes/BigIdeasLearning.md @@ -289,4 +289,4 @@ CS is new "just off the ground" last year. So what they did last year is: * They want to increase engagement across all users - teachers and district people * More importantly, teachers turnover far less than district employees. Having good relationships with teachers is super important. -[They](2023-07-27_they.md) had their first "scaled strategy" meeting this last week. They are interested in a viable repository of learning info and want to use Northpass. Hopefully by September 1st. +They had their first "scaled strategy" meeting this last week. They are interested in a viable repository of learning info and want to use Northpass. Hopefully by September 1st. diff --git a/CustomerNotes/G2.md b/CustomerNotes/G2.md index c179b060..1859927d 100644 --- a/CustomerNotes/G2.md +++ b/CustomerNotes/G2.md @@ -331,3 +331,11 @@ Feedback from Testing: * Highlighted Quiz answer: Buyer Intent Integrations, Sales Engagement Quiz DONE: Archive the Review Tracking & Marketing Content course and turn off script (Austin) DONE: Enable Footer & share screenshots with Erin for decision. + +## 07/31/2023 + +### Meeting with Erin + +TODO: Find out where in roadmap learner transcripts are. +Verified outcome! 70 Cert completions before EOQ. +Katlin to be presenting in Chicago next week. Talk is internal and on August 10th. diff --git a/CustomerNotes/Skuid.md b/CustomerNotes/Skuid.md index dfd7ccf4..20dc4f75 100644 --- a/CustomerNotes/Skuid.md +++ b/CustomerNotes/Skuid.md @@ -256,7 +256,7 @@ DONE: Update the registration form on skuid skool. Alexa's request is below: ### Certs for Skuad -TODO: Move the Skuid Recipe to Skuad -TODO: Remove Points Node from Skuad Recipe -TODO: Register button should immediately change the property to Registered. -TODO: Set Register button to webhook > email +DONE: Move the Skuid Recipe to Skuad +DONE: Remove Points Node from Skuad Recipe +DONE: Register button should immediately change the property to Registered. +DONE: Set Register button to webhook > email diff --git a/Scripts/API_Tests/get-group-ids.py b/Scripts/API_Tests/get-group-ids.py index f0cf8cac..71381aa8 100644 --- a/Scripts/API_Tests/get-group-ids.py +++ b/Scripts/API_Tests/get-group-ids.py @@ -18,14 +18,17 @@ def get_groups(apiKey): nextlink = data["links"] for response in data["data"]: - group_id = response["id"] - group_name = response["attributes"]["name"] - # print(group_name) - groups_dict = { - "id": group_id, - "name": group_name, - } - groups.append(groups_dict) + created_at = response["attributes"]["created_at"] + if created_at.startswith("2023"): + group_id = response["id"] + group_name = response["attributes"]["name"] + # print(group_name) + groups_dict = { + "id": group_id, + "name": group_name, + "created_at": created_at, + } + groups.append(groups_dict) if "next" not in nextlink: break diff --git a/Scripts/API_Tests/hubspot_notes.py b/Scripts/API_Tests/hubspot_notes.py index 48164fb2..7b79c324 100644 --- a/Scripts/API_Tests/hubspot_notes.py +++ b/Scripts/API_Tests/hubspot_notes.py @@ -11,13 +11,32 @@ def no_client(): "Authorization": "Bearer pat-na1-9f41f073-95e2-4eea-b0c9-3e9571a3998c", } # url = "https://api.hubapi.com/crm/v3/objects/companies?limit=10&archived=false" - # url = "https://api.hubapi.com/crm/v3/objects/notes?limit=100&archived=false&properties=hubspot_owner_id,hs_note_body" + # url = "https://api.hubapi.com/crm/v3/objects/notes/search?limit=100&archived=false&properties=hubspot_owner_id,hs_note_body" + url = "https://api.hubapi.com/crm/v3/objects/notes/search" # url = f"https://api.hubapi.com/crm/v4/objects/companies/{COMPANYID}/associations/notes" - url = f"https://api.hubapi.com/engagements/v1/engagements/" # 36317682030" + # url = f"https://api.hubapi.com/engagements/v1/engagements/" # 36317682030" # associated/COMPANY/{COMPANYID}" - response = requests.get(url, headers=headers) + data = { + "filterGroups": [ + { + "filters": [ + { + "propertyName": "hs_attachment_ids", + "operator": "NEQ", + # "value": "5951571334", + "value": "136317682030" + } + ] + } + ], + "properties": ["hs_note_body"], + } + + response = requests.post(url, json=data, headers=headers) + # print(response) jsontext = response.json() + jsontext = json.dumps(jsontext) print(jsontext) # for item in jsontext['results']: # for props in item['properties']: