-
Congratulations! You're Walmart Luminate Replenishment Certified!
-
Please share your new status by posting an announcement on LinkedIn or social media using your own post or you can copy the message below:
+
You earned it!
+
Congratulations, you're Walmart Luminate Replenishment Certified. Click the image to download your badge and use the button below to add your accomplishment to LinkedIn!
diff --git a/CustomerNotes/G2/G2.md b/CustomerNotes/G2/G2.md
index f0cf5f56..f3e751c8 100644
--- a/CustomerNotes/G2/G2.md
+++ b/CustomerNotes/G2/G2.md
@@ -541,3 +541,16 @@ Needs it ASAP.
FEAT: Help with reports on monthly basis so they aren't surprised by engagement metrics at EOQ.
* Scaled CS model is being rolled out.
FEAT: Empty groups with people for account-based analytics.
+
+## 03/12/2024
+
+* Erin's plan was to get the courses for marketers up, but instead of 3 courses will be doing 2.
+* Paid promotions for G2U - ads on LinkedIn for customers at Director Level and up.
+* Demand gen team is working on customer expansion
+* This idea came from Erin and Katlin. VP of Revenue Marketing.
+* First week of April, re-engagement email for certifications.
+* Once G2 for customer marketers course is live, appcue to admins.
+* Erin was talking with product folks and pull out
+* Scaled CS Model:
+ * Tier 1: CSM and AM
+ * Tier 2-4: Various levels of support
diff --git a/CustomerNotes/Walmart_Luminate/Walmart_Luminate.md b/CustomerNotes/Walmart_Luminate/Walmart_Luminate.md
index 20d60466..078a5412 100644
--- a/CustomerNotes/Walmart_Luminate/Walmart_Luminate.md
+++ b/CustomerNotes/Walmart_Luminate/Walmart_Luminate.md
@@ -182,10 +182,13 @@ Off-the-record Chat:
* Scott likely already has things in place.
* SCORM files and loading very very slowly. Especially courses with a lot SCORM files.
-## 3/1/2024
+## 03/01/2024
Random notes for Luminate templates.
https://linkedin.com/profile/add/?startTask=Walmart%20Luminate%20Replenishment%20Certification&name=Walmart%20Luminate%20Replenishment%20Certification&organizationId=80427781&issueYear={{ this_year }}&issueMonth={{ this_month }}&expirationYear={{ next_year }}&expirationMonth={{ this_month }}&certUrl=https%3A%2F%2Fwalmartluminate.northpass.com
https://linkedin.com/profile/add/?startTask=Walmart%20Luminate%20Replenishment%20Certification&name=Walmart%20Luminate%20Replenishment%20Certification&organizationId=80427781&certUrl=https%3A%2F%2Fwalmartluminate.northpass.com
+
+## 03/12/2024
+
diff --git a/Scripts/bulkPersonCreateAndGroupsWithCSV.js b/Scripts/bulkPersonCreateAndGroupsWithCSV.js
new file mode 100644
index 00000000..112e471c
--- /dev/null
+++ b/Scripts/bulkPersonCreateAndGroupsWithCSV.js
@@ -0,0 +1,66 @@
+const axios = require("axios")
+const fs = require("fs")
+var { parse } = require("csv-parse")
+var usersArray = []
+
+var api_key = "" // INSERT API KEY
+
+function wait(ms) {
+ return new Promise((r) => setTimeout(r, ms))
+}
+
+function bulkAddPeople(xApiKey, users, num) {
+ let page = num
+
+ axios({
+ method: "post",
+ url: "https://api.northpass.com/v2/bulk/people",
+ data: {
+ data: {
+ attributes: {
+ people: [{ email: users[num].email, groups: users[num].group }],
+ },
+ },
+ },
+ headers: {
+ accept: "application/json",
+ "x-api-key": xApiKey,
+ "content-type": "application/json",
+ },
+ })
+ .then((res) => {
+ if (page < users.length - 1) {
+ console.log(`User ${users[num].email} added to group ${users[num].group} on index ${page}`)
+ page++
+ wait(200)
+ bulkAddPeople(xApiKey, users, page)
+ } else {
+ console.log("complete")
+ }
+ })
+ .catch((err) => {
+ console.log(err)
+ })
+}
+
+const csvReader = async () => {
+ fs.createReadStream("./csv-files/drofus-users.csv") // UPDATE URL OF CSV FILE
+ .pipe(parse({ delimiter: "," }))
+ .on("data", function (row) {
+ const userObj = {
+ email: row[3], // UPDATE COLUMN INDEX
+ group: row[7] // UPDATE COLUMN INDEX
+ }
+ usersArray.push(userObj)
+ })
+ .on("error", function (error) {
+ console.log(error.message)
+ })
+ .on("end", async function () {
+ console.log(`Number of emails in array: ${usersArray.length}`)
+
+ bulkAddPeople(api_key, usersArray, 1) // Start with index 1 if there is a header row, otherwise start with 0
+ })
+}
+
+csvReader()
diff --git a/Todos.md b/Todos.md
index 023cdb65..918b9ade 100644
--- a/Todos.md
+++ b/Todos.md
@@ -94,9 +94,9 @@ message](https://northpasshq.slack.com/archives/C04RER4PH09/p1709147957374999?th
## 03-05-2024
-- [ ] As Katlin from G2 to explain how she got her metrics.
- - [ ] 'Since joining Gainsight we have a mandate to scale our community. You guys are doing it well. How do you do XF work? How did you get those numbers? How did you tie it to retention?'
- - [ ] Internal change management. They don't need to reference Northpass. You've mastered it, we'd love for you to do a session with our customers.
+- [X] As Katlin from G2 to explain how she got her metrics.
+ - [X] 'Since joining Gainsight we have a mandate to scale our community. You guys are doing it well. How do you do XF work? How did you get those numbers? How did you tie it to retention?'
+ - [X] Internal change management. They don't need to reference Northpass. You've mastered it, we'd love for you to do a session with our customers.
## 03-06-2024
@@ -110,7 +110,13 @@ message](https://northpasshq.slack.com/archives/C04RER4PH09/p1709147957374999?th
## 03-08-2024
- [ ] Chat with Allyson about ILTs and manager permissions.
-- [ ] Ask Charlie about a categories to courses script.
-- [ ] Find out if ppl roles (mgr/admin) are in any API payloads.
-- [ ] Ask Lila about verbiage of LMS vs CE Product, etc.
+- [ ] Ask Charlie about a categories to courses script. - Anthology
+- [ ] Find out if ppl roles (mgr/admin) are in any API payloads. - Anthology
+- [X] Ask Lila about verbiage of LMS vs CE Product, etc.
+## 03-12-2024
+
+- [X] Emerging markets outreach - $50k+ goes to Easton. Under that goes to Kat. Be sparing with Kellie - C-level and brand name/SaaS/Good Logo. CC Kat on _all_ check ins. Send reminder to #ce-cs.
+- [X] Reach out to Chris and ask for executive sponsor. If they ask why, we say this is standard procedure and we actually recommend the same to our customers. Direct line of contact to our executive team.
+- [X] Add TL tl;dr notes for Artera, Williams-Sonoma
+- [X] Clone courses into sandbox and remove templates for Big Ideas