Mostly Bolt notes. Some small script changes.
This commit is contained in:
@ -187,3 +187,38 @@ Once we have alignment on solving the webhooks, then we can properly create a sc
|
|||||||
|
|
||||||
Question about authentication screen: asked if email could be optional
|
Question about authentication screen: asked if email could be optional
|
||||||
In african markets, emails are not used normally. So can they not use one?
|
In african markets, emails are not used normally. So can they not use one?
|
||||||
|
|
||||||
|
## 07/05/2023
|
||||||
|
|
||||||
|
### Bolt Churning & Retention Attempt
|
||||||
|
|
||||||
|
Sten: they have reached a stage in their lifecycle where they have tried various platforms, including their own.
|
||||||
|
Looking at how information and content is displayed.
|
||||||
|
Saw best results in their own platform. No other use cases for Northpass at all.
|
||||||
|
Need to off-board within one month. 7/31 is the end of contract.
|
||||||
|
|
||||||
|
Travis: is this economic, just the stories platform.
|
||||||
|
|
||||||
|
Sten: Bolt is a "super app" and has 5 verticals in a single platform.
|
||||||
|
Because of this they need to display triggers from native in-app information
|
||||||
|
It makes it so much more flexible when using everything within the app.
|
||||||
|
Bite-sized and mini information display is easier within their own app.
|
||||||
|
|
||||||
|
Doris: Drivers want really tiny bite-sized pieces of information, not a proper course.
|
||||||
|
|
||||||
|
Travis: Does the name "stories" mean something like
|
||||||
|
|
||||||
|
Doris: We look at driver behavior before and after they watch those stories and see an improvement in training.
|
||||||
|
|
||||||
|
Sten: We can't really "train" drivers anymore in the sense of public policy etc.
|
||||||
|
We can't "demand" people to do training, so the training metrics don't really matter.
|
||||||
|
|
||||||
|
#### Offboarding Specifics
|
||||||
|
|
||||||
|
Doris: No support needed at this point.
|
||||||
|
They will be making a big global change next week, so we'll see a huge drop in learners in Northpass.
|
||||||
|
|
||||||
|
TODO: Norm to hold a weekly meeting on Monday in case Bolt needs any support.
|
||||||
|
|
||||||
|
Aleksandr is the global procurement manager. Wants to sign a termination form, but email is good enough.
|
||||||
|
He is the POC for many of the verticals.
|
||||||
|
|||||||
@ -541,3 +541,10 @@ Enrollment:
|
|||||||
* This is for showing items in the help menu.
|
* This is for showing items in the help menu.
|
||||||
* Ece also wanted an update on the dashboard for analytics. We are not ready for them yet. We don't have an ETA.
|
* Ece also wanted an update on the dashboard for analytics. We are not ready for them yet. We don't have an ETA.
|
||||||
* No questions from Jagannatha
|
* No questions from Jagannatha
|
||||||
|
|
||||||
|
## 07/05/2023
|
||||||
|
|
||||||
|
### Walmart Wednesday
|
||||||
|
|
||||||
|
* MJ Out due to unexpected Surgery. Expected back on the 10th.
|
||||||
|
* Jagannatha to send proposal for Spanish language resources. If value is `null` or blank, display english.
|
||||||
|
|||||||
@ -4,7 +4,7 @@ from pathlib import Path
|
|||||||
import Apikeys
|
import Apikeys
|
||||||
import os
|
import os
|
||||||
|
|
||||||
basefile = "/Users/normrasmussen/Downloads/Mizuno_May.csv"
|
basefile = "/Users/normrasmussen/Downloads/Mizuno June 2023 Completions.csv"
|
||||||
api_key = Apikeys.mizuno
|
api_key = Apikeys.mizuno
|
||||||
uuid_url = "https://api.northpass.com/v2/people?filter[email][eq]="
|
uuid_url = "https://api.northpass.com/v2/people?filter[email][eq]="
|
||||||
prop_url = "https://api.northpass.com/v2/properties/people/"
|
prop_url = "https://api.northpass.com/v2/properties/people/"
|
||||||
@ -35,7 +35,8 @@ def load_file(basefile):
|
|||||||
url2 = prop_url + f"{uuid}"
|
url2 = prop_url + f"{uuid}"
|
||||||
response = requests.get(url2, headers=headers)
|
response = requests.get(url2, headers=headers)
|
||||||
data = response.json()
|
data = response.json()
|
||||||
pgaid = data["data"]["attributes"]["properties"]["account_number"]
|
pgaid = (data["data"]
|
||||||
|
["attributes"]["properties"]["account_number"])
|
||||||
row_dict["pgaid"] = pgaid
|
row_dict["pgaid"] = pgaid
|
||||||
dict_list.append(row_dict)
|
dict_list.append(row_dict)
|
||||||
print("No errors! Passing along the dictionary!")
|
print("No errors! Passing along the dictionary!")
|
||||||
|
|||||||
Reference in New Issue
Block a user