diff --git a/CustomerNotes/G2.md b/CustomerNotes/G2.md index bc1f38ce..f7f398b2 100644 --- a/CustomerNotes/G2.md +++ b/CustomerNotes/G2.md @@ -153,3 +153,15 @@ They feel like this has been talked about for a longtime. Just waiting for a GO * Goal for today: finish all the quizzes for the Profile Performance and Lead Management. * Something that's difficult: Each section has limited information so you can only create so many questions per section, goal of 3 questions per section. * She likes how easy it is to change the questions. + +## 11/21/2022 +### Analytics, Salesforce, Other Items +Katlin compared numbers with Erin and the number of unique logins and accounts created were off. +Not sure where Katlin pulled her numbers. Erin pulled School Acitivity report. +Re-add the MCA to the G2 Google Sheets. +CEO is _very_ excited for the numbers of G2U and wants the cert done ASAP. +* Erin asked about a group of courses and issuing a cert. +* Clickup has a great university that she likes +* Adding a cert to someone's linkedin is a huge component about this. They want this to be marketing focused +* She now wants to think about Learning Paths. Buyer Intent Expert, Review Expert, +* No timeline for how fast this should be done. But CEO is very excited and expecting this soon. diff --git a/CustomerNotes/Walmart.md b/CustomerNotes/Walmart.md index a56f3ddc..8a3f1049 100644 --- a/CustomerNotes/Walmart.md +++ b/CustomerNotes/Walmart.md @@ -86,3 +86,23 @@ * Yes, video reosurces are not playing nicely with iOS. * After the video is over, it takes over the entire screen and is hard to exit. +## 11/21/2022 +### +* Screens of telling the story of "how to get there" +* Open app, click resource center, pick random resource --> walk through the resource itself +* This will be embedded into a PPT deck +* On deck, this needs to be done right now! Next few hours. +* Charlie is working on next steps for design and flow of content +* This is for drivers given the ability to go into any resource of their choice. +* After random activity, once at end of course, they won't see "incomplete" activity screen, but go back to course overview page. +* If you _do_ finish all activities, it will bring you to resource center home page +* Video Resources: auto launches into video (iOS), and autoorients to full screen. +* Can Wistia do chapters? Yes. Wistia can add chapters, but how to do it programmatically? +TODO: * We can add the chapters, but we will need to find a way to do it easily. +Back story to Krystal's requests: +* They just had some research done about user experience with the resource center +* There was other feedback with the content that they want to discuss + * Mostly, it will be a big text-based resource lift + * You should be able to read and scan very quickly +* The key is, the search feature _*really*_ needs to be improved. Thorough, neat, well laid out, etc. +* Over the next week, they are making a wishlist for the next year. diff --git a/Scripts/API_Tests/getuuid_from_email.py b/Scripts/API_Tests/getuuid_from_email.py index d146bc96..811e2447 100644 --- a/Scripts/API_Tests/getuuid_from_email.py +++ b/Scripts/API_Tests/getuuid_from_email.py @@ -1,13 +1,13 @@ import requests -import urllib.parse +baseUrl = "https://api.northpass.com/v2/people/" baseUrlname = "https://api.northpass.com/v2/people?filter[name][eq]=" baseUrlemail = "https://api.northpass.com/v2/people?filter[email][eq]=" apiKey = "JRDpCGQ7vSRiva6t5OkWDr5eJ" #G2 #apiKey = "6hUfJdAartHTHhHc0WIRZYPWe" #Walmart def getfromName(baseUrlname, apiKey): - name = "Norm Test Testing Norm" + name = "Someone else" url = baseUrlname + f"{name}" headers = { "accept": "*/*", @@ -15,15 +15,19 @@ def getfromName(baseUrlname, apiKey): "content-type": "application/json", } response = requests.get(url, headers=headers) + if response.status_code == 200: + print("200 Response!") + else: + print("Another error! " + response.status_code) response = response.json() - print(response) - uuid = response["data"][0]["id"] - print("Learner ID:" ) - print(uuid) + #print(response) + #uuid = response["data"][0]["id"] + #print("Learner ID:" ) + #print(uuid) def getfromEmail(baseUrlemail, apiKey): - email = "norm%2Bg2test@northpass.com" # The %2B encodes the + sign in the URL. Using the + sign won't work. - #email = "aaron.rodgers@corpay.com" + #email = "norm2test@northpass.com" # The %2B encodes the + sign in the URL. Using the + sign won't work. + email = " " url = baseUrlemail + f"{email}" print(url) headers = { @@ -32,12 +36,30 @@ def getfromEmail(baseUrlemail, apiKey): "content-type": "application/json", } response = requests.get(url, headers=headers) - response = response.json() print(response) + if response.status_code == 200: + print("200 Error!") + else: + print("Another Error!") + response = response.json() + #print(response) uuid = response["data"] - print("Learner ID:" ) - print(uuid) + #print("Learner ID:" ) + #print(uuid) + +def getfromUuid(baseUrl, apiKey): + uuid = "57b2b5eb-aa56-4cee-bb32-8c678a2de1b7" + url = baseUrl + uuid + headers = { + "accept": "*/*", + "x-api-key": apiKey, + "content-type": "application/json", + } + response = requests.get(url, headers=headers) + print(response.status_code) + print(response.text) if __name__ == "__main__": - getfromEmail(baseUrlemail, apiKey) + getfromUuid(baseUrl, apiKey) + #getfromEmail(baseUrlemail, apiKey) #getfromName(baseUrlname, apiKey) diff --git a/Scripts/G2_Unenroll/fix_unenroll.py b/Scripts/G2_Unenroll/fix_unenroll.py index b53c1b46..1b78611f 100644 --- a/Scripts/G2_Unenroll/fix_unenroll.py +++ b/Scripts/G2_Unenroll/fix_unenroll.py @@ -1,42 +1,81 @@ import requests -import os -from datetime import date +from collections import Counter import pandas as pd -basecsv = "/Users/normrasmussen/Documents/Northpass/Scripts/G2_Unenroll/g2mca.csv" +basecsv = "/Users/normrasmussen/Documents/Northpass/Scripts/G2_Unenroll/g2mca_112122.csv" +apiKey = "JRDpCGQ7vSRiva6t5OkWDr5eJ" #G2 -def mainFunc(basecsv): +def mainFunc(basecsv, apiKey): readData = pd.read_csv( basecsv, index_col=False, ) - try: - readData.loc[ - readData['Course Name'].isin(['G2 Profile Anatomy'])] - readData.loc[ - readData['Course Name'].isin('Profile Performance & Lead Management')] - readData.loc[ - readData['Course Name'].isin('Review Tracking & Brand Building')] - readData.loc[ - readData['Course Name'].isin('The Review Rundown')] - extractedList = readData.loc[ - readData['Attempt Start'].isnull(), - 'Learner Name'].tolist() - print(extractedList) - # newList = [*set(extractedList)] - #findUuids(newList, readData) - except: - print("Not Working") + readData.loc[readData['Course Name'].isin([ + 'G2 Profile Anatomy', 'Profile Performance & Lead Management', + 'Review Tracking & Brand Building', 'The Review Rundown'])] + extractedList = readData.loc[readData['Attempt Start'].isnull(),'Email'].tolist() + fourOccs = Counter(extractedList) + finalNames = [] + for name, occurences in fourOccs.items(): + if occurences == 4: + finalNames.append(name) + findUuids(finalNames, readData, apiKey) -#def findUuids(newList, readData): -# try: -# for name in newList: -# uuidList = readData.loc[ -# readData['Learner Name'] == name), -# 'uuid'.tolist()] -# print(uuidList) -# except: -# print("An error occured") +def findUuids(finalNames, readData, apiKey): + emailUuid = [] + uuidList = [] + deactivateUuid = {} + try: + for name in finalNames: + baseUrlname = "https://api.northpass.com/v2/people?filter[email][eq]=" + name = name + url = baseUrlname + f"{name}" + headers = { + "accept": "*/*", + "x-api-key": apiKey, + "content-type": "application/json", + } + response = requests.get(url, headers=headers) + response = response.json() + uuid = response["data"][0]["id"] + uuidList.append(uuid) + deactivateUuid.update({name: uuid}) + emailUuid.append(deactivateUuid) + except: + print("An error occured") + finally: + print(deactivateUuid) + removeFromGroup(uuidList, apiKey) + +def removeFromGroup(uuidList, apiKey): + numRemoved = 0 + badUuid = [] + for uuid in uuidList: + uuidList = [] + url = f"https://api.northpass.com/v2/people/{uuid}/relationships/groups" + headers = { + "accept": "application/json", + "content-type": "application/json", + "X-Api-Key": apiKey + } + payload = {"data": [ + { + "id": "d78af2ad-a6c8-4016-90a4-fb00bcc67891", + "type": "membership-groups" + } + ]} + response = requests.delete(url, json=payload, headers=headers) + status = response.status_code + if response.status_code == 200: + print(f"UserID {uuid} okay to be deleted.") + numRemoved += 1 + uuidList.append(uuid) + else: + print(f"Some other error {status} for {uuid}") + badUuid.append(uuid) + print(f"Complete! {numRemoved} people removed from group.") + print("Bad UUIDS: ") + print(badUuid) if __name__ == "__main__": - mainFunc(basecsv) + mainFunc(basecsv, apiKey) diff --git a/Scripts/G2_Unenroll/g2mca_112122.csv b/Scripts/G2_Unenroll/g2mca_112122.csv new file mode 100644 index 00000000..8d50e261 --- /dev/null +++ b/Scripts/G2_Unenroll/g2mca_112122.csv @@ -0,0 +1,1962 @@ +,Learner Name,Email,SSO UID,Course Name,Course Version,Enrollment Date,Attempt Start,Attempt End,Attempt Number,Course Progress,Last Activity,Last Activity Date,Groups +1,Keven Farnworth,keven@bl.ink,keven@bl.ink,How to Respond to Reviews,LIVE,2022-11-18 18:59:56,2022-11-18 18:59:57,2022-11-18 19:13:58,1,100%,Unactionable Negative Reviews,2022-11-18 19:13:58,G2 +2,Gina Denenberg,gdenenberg@g2.com,gdenenberg@g2.com,How to Use Buyer Intent,LIVE,2022-11-16 18:16:00,2022-11-16 18:16:01,,1,0%,,,G2 +3,Anu Chadha,achadha@g2.com,achadha@g2.com,How to Respond to Reviews,LIVE,2022-11-16 11:24:26,2022-11-16 11:24:26,,1,0%,,,G2 +4,Erin Boyd,eboyd@g2.com,eboyd@g2.com,Preparing for G2 Reports,LIVE,2022-11-15 17:55:57,2022-11-15 17:55:58,,1,0%,,,G2 +5,Yoselyn Rea,yrea@auditboard.com,yrea@auditboard.com,Preparing for G2 Reports,LIVE,2022-11-07 15:17:20,2022-11-07 15:17:21,,1,43%,Report Release,2022-11-07 15:19:18,G2 +6,Matt McGinley,mmcginley@g2.com,mmcginley@g2.com,How to Use Buyer Intent,LIVE,2022-11-02 17:31:49,2022-11-02 17:31:49,,1,13%,Considerations,2022-11-02 17:32:10,G2 +7,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,Preparing for G2 Reports,LIVE,2022-11-02 16:20:50,2022-11-02 16:20:51,,1,21%,Review Deadline,2022-11-02 16:21:16,G2 +8,Andy Wamstad,andy.wamstad@contentstack.com,andy.wamstad@contentstack.com,Buyer Intent Basics,LIVE,2022-11-01 20:20:42,2022-11-01 20:20:42,,1,67%,Detailed Timeline view,2022-11-01 20:22:50,G2 +9,Claudine Ting,claudine.ting@getmaintainx.com,claudine.ting@getmaintainx.com,Preparing for G2 Reports,LIVE,2022-11-01 18:44:45,2022-11-01 18:44:45,,1,64%,Segmented Grid Report Criteria,2022-11-01 18:45:47,G2 +10,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,How to Use Buyer Intent,LIVE,2022-11-01 09:34:19,2022-11-01 09:34:20,,1,53%,Team Goals,2022-11-01 10:13:41,G2 +11,Katlin Hess,khess@g2.com,khess@g2.com,How to Respond to Reviews,LIVE,2022-10-31 15:53:13,2022-10-31 15:53:14,,1,17%,Respond to Reviews: Who ,2022-10-31 15:53:32,G2 +12,Sydney Hughes,shughes@g2.com,shughes@g2.com,Buyer Intent Basics,LIVE,2022-10-28 16:40:01,2022-10-28 16:40:02,,1,0%,,,G2 +13,Ceren Yuksel,ceren.yuksel@compport.com,ceren.yuksel@compport.com,How to Respond to Reviews,LIVE,2022-10-28 09:17:11,2022-10-28 09:17:11,2022-10-28 09:18:35,1,100%,Unactionable Negative Reviews,2022-10-28 09:18:35,G2 +14,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,Preparing for G2 Reports,LIVE,2022-10-27 14:07:38,2022-10-27 14:07:39,2022-10-27 14:31:17,1,100%,Results Index Criteria,2022-10-27 14:31:17,G2 +15,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,Preparing for G2 Reports,LIVE,2022-10-27 14:07:38,2022-11-08 13:58:42,,2,21%,Review Deadline,2022-11-08 13:58:52,G2 +16,David Vero,dvero@successfinder.com,dvero@successfinder.com,How to Use Buyer Intent,LIVE,2022-10-26 18:44:03,2022-10-26 18:44:03,2022-10-26 19:08:32,1,100%,Buyer Intent Score Filter Recommendations,2022-10-26 19:08:32,G2 +17,David Vero,dvero@successfinder.com,dvero@successfinder.com,Buyer Intent Basics,LIVE,2022-10-25 20:29:30,2022-10-25 20:29:30,2022-10-25 20:44:05,1,100%,Integrations,2022-10-25 20:44:05,G2 +18,David Vero,dvero@successfinder.com,dvero@successfinder.com,What is the G2 Content Subscription?,LIVE,2022-10-25 19:07:27,2022-10-25 19:07:28,2022-10-25 20:29:11,1,100%,Infographics,2022-10-25 20:29:11,G2 +19,Erin Satterthwaite,esatterthwaite@g2.com,esatterthwaite@g2.com,How to Respond to Reviews,LIVE,2022-10-24 21:12:38,2022-10-24 21:12:39,,1,17%,Formulating a Response to Negative Reviews,2022-10-24 21:12:58,G2 +20,🌱 Daniella Alscher,alscherd@gmail.com,alscherd@gmail.com,How to Respond to Reviews,LIVE,2022-10-20 21:14:39,2022-10-20 21:14:40,,1,0%,,,G2 +21,David Vero,dvero@successfinder.com,dvero@successfinder.com,Preparing for G2 Reports,LIVE,2022-10-19 14:58:27,2022-10-19 14:58:27,2022-10-19 15:41:31,1,100%,Report Calendar + Actions Required,2022-10-19 15:41:31,G2 +22,Aravind Raj T,araj@g2.com,araj@g2.com,Buyer Intent Basics,LIVE,2022-10-18 07:25:12,2022-10-18 07:25:12,,1,0%,,,G2 +23,Anthony Fusco,anthonyf@smartdraw.com,anthonyf@smartdraw.com,Buyer Intent Basics,LIVE,2022-10-17 17:59:58,2022-10-17 17:59:58,2022-10-17 18:04:25,1,100%,Integrations,2022-10-17 18:04:25,G2 +24,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,How to Use Buyer Intent,LIVE,2022-10-13 14:30:21,2022-10-13 14:30:21,,1,53%,Increase Marketing Spend Efficiency,2022-10-13 14:50:28,G2 +25,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,How to Use Buyer Intent,LIVE,2022-10-11 17:53:24,2022-10-11 17:53:27,,1,7%,Plan Building,2022-10-11 17:54:07,G2 +26,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,Preparing for G2 Reports,LIVE,2022-10-11 17:50:31,2022-10-11 17:50:31,,1,36%,Draft Edit Request Deadline,2022-10-11 17:52:54,G2 +27,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,How to Use Buyer Intent,LIVE,2022-10-11 16:49:34,2022-10-11 16:49:35,2022-10-11 17:36:35,1,100%,Buyer Intent Score Filter Recommendations,2022-10-11 17:36:36,G2 +28,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,Buyer Intent Basics,LIVE,2022-10-11 16:43:53,2022-10-11 16:43:54,2022-10-11 16:49:09,1,100%,Integrations,2022-10-11 16:49:09,G2 +29,Lucy Allen,lucy.allen@linnworks.com,lucy.allen@linnworks.com,Preparing for G2 Reports,LIVE,2022-10-10 14:58:08,2022-10-10 14:58:09,2022-10-10 15:04:39,1,100%,Results Index Criteria,2022-10-10 15:04:39,G2 +30,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,Buyer Intent Basics,LIVE,2022-10-10 14:07:39,2022-10-10 14:07:40,2022-11-01 09:33:27,1,100%,Integrations,2022-11-01 09:33:27,G2 +31,Erin Boyd,eboyd@g2.com,eboyd@g2.com,Buyer Intent Basics,LIVE,2022-10-07 17:52:57,2022-10-07 17:52:58,,1,0%,,,G2 +32,Mary Green,marygreencny@gmail.com,marygreencny@gmail.com,How to Use Buyer Intent,LIVE,2022-10-07 17:44:39,2022-10-07 17:44:39,,1,7%,Plan Building,2022-10-07 17:45:11,G2 +33,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,How to Use Buyer Intent,LIVE,2022-10-07 16:16:04,2022-10-07 16:16:05,,1,0%,,,G2 +34,Ghianda Boykin,gboykin@axway.com,gboykin@axway.com,How to Respond to Reviews,LIVE,2022-10-06 20:34:14,2022-10-06 20:34:15,,1,17%,A Framework for Responding to Reviews,2022-10-14 18:28:05,G2 +35,Amanda Malko,amanda@g2.com,amanda@g2.com,Preparing for G2 Reports,LIVE,2022-10-06 13:56:48,2022-10-06 13:56:48,,1,0%,,,G2 +36,Marin Sabo,marin.sabo@optimoroute.com,marin.sabo@optimoroute.com,How to Respond to Reviews,LIVE,2022-10-06 10:51:45,2022-10-06 10:51:45,2022-10-06 11:07:18,1,100%,Unactionable Negative Reviews,2022-10-06 11:07:18,G2 +37,Stef Marin,stef.marin@docebo.com,stef.marin@docebo.com,Buyer Intent Basics,LIVE,2022-10-05 15:26:51,2022-10-05 15:26:52,,1,50%,Buyer Intent Signals & Ideal Customer Profile Matching,2022-10-05 15:46:55,G2 +38,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,How to Use Buyer Intent,LIVE,2022-10-04 17:51:55,2022-10-04 17:51:56,,1,7%,Plan Building,2022-10-04 17:55:56,G2 +39,Tim Silber,tsilber@g2.com,tsilber@g2.com,What is the G2 Content Subscription?,LIVE,2022-10-03 18:02:43,2022-10-03 18:02:44,,1,0%,,,G2 +40,Angela Meier,ameier@complianceline.com,ameier@complianceline.com,Review Tracking & Brand Building,,2022-10-03 17:37:44,,,,,,,G2 +41,Angela Meier,ameier@complianceline.com,ameier@complianceline.com,Profile Performance & Lead Management,,2022-10-03 17:37:44,,,,,,,G2 +42,Angela Meier,ameier@complianceline.com,ameier@complianceline.com,G2 Profile Anatomy,,2022-10-03 17:37:44,,,,,,,G2 +43,Angela Meier,ameier@complianceline.com,ameier@complianceline.com,The Review Rundown,,2022-10-03 17:37:44,,,,,,,G2 +44,Laura Burtness,lburtness@g2crowd.com,lburtness@g2crowd.com,G2 Profile Anatomy,,2022-10-03 16:56:40,,,,,,,G2 +45,Laura Burtness,lburtness@g2crowd.com,lburtness@g2crowd.com,The Review Rundown,,2022-10-03 16:56:40,,,,,,,G2 +46,Laura Burtness,lburtness@g2crowd.com,lburtness@g2crowd.com,Profile Performance & Lead Management,,2022-10-03 16:56:40,,,,,,,G2 +47,Laura Burtness,lburtness@g2crowd.com,lburtness@g2crowd.com,Review Tracking & Brand Building,,2022-10-03 16:56:40,,,,,,,G2 +48,Jessica Condupa,jessicacondupa@gmail.com,jessicacondupa@gmail.com,How to Use Buyer Intent,LIVE,2022-10-03 16:16:41,2022-10-03 16:16:42,,1,0%,,,G2 +49,Joseph Arcos,jarcos@abnormalsecurity.com,jarcos@abnormalsecurity.com,G2 Profile Anatomy,20,2022-10-03 15:59:10,2022-10-03 15:59:24,,1,17%,What is the Value of a G2 Profile?,2022-10-03 16:14:52,G2 +50,Joseph Arcos,jarcos@abnormalsecurity.com,jarcos@abnormalsecurity.com,The Review Rundown,,2022-10-03 15:59:10,,,,,,,G2 +51,Joseph Arcos,jarcos@abnormalsecurity.com,jarcos@abnormalsecurity.com,Review Tracking & Brand Building,,2022-10-03 15:59:10,,,,,,,G2 +52,Joseph Arcos,jarcos@abnormalsecurity.com,jarcos@abnormalsecurity.com,Profile Performance & Lead Management,,2022-10-03 15:59:10,,,,,,,G2 +53,Jake Sotir,jake.sotir@reprise.com,jake.sotir@reprise.com,Preparing for G2 Reports,LIVE,2022-10-03 15:51:10,2022-10-03 15:51:10,,1,43%,Report Release,2022-10-03 15:51:40,G2 +54,Jake Sotir,jake.sotir@reprise.com,jake.sotir@reprise.com,Review Tracking & Brand Building,,2022-10-03 15:50:56,,,,,,,G2 +55,Jake Sotir,jake.sotir@reprise.com,jake.sotir@reprise.com,G2 Profile Anatomy,,2022-10-03 15:50:56,,,,,,,G2 +56,Jake Sotir,jake.sotir@reprise.com,jake.sotir@reprise.com,Profile Performance & Lead Management,,2022-10-03 15:50:56,,,,,,,G2 +57,Jake Sotir,jake.sotir@reprise.com,jake.sotir@reprise.com,The Review Rundown,,2022-10-03 15:50:56,,,,,,,G2 +58,Kristin Welker,kristin-welker@pluralsight.com,kristin-welker@pluralsight.com,G2 Profile Anatomy,,2022-10-03 15:14:28,,,,,,,G2 +59,Kristin Welker,kristin-welker@pluralsight.com,kristin-welker@pluralsight.com,Profile Performance & Lead Management,,2022-10-03 15:14:28,,,,,,,G2 +60,Kristin Welker,kristin-welker@pluralsight.com,kristin-welker@pluralsight.com,Review Tracking & Brand Building,,2022-10-03 15:14:28,,,,,,,G2 +61,Kristin Welker,kristin-welker@pluralsight.com,kristin-welker@pluralsight.com,The Review Rundown,,2022-10-03 15:14:28,,,,,,,G2 +62,Amanda Childs,amanda@agilitycms.com,amanda@agilitycms.com,Review Tracking & Brand Building,,2022-10-03 13:33:10,,,,,,,G2 +63,Amanda Childs,amanda@agilitycms.com,amanda@agilitycms.com,The Review Rundown,,2022-10-03 13:33:10,,,,,,,G2 +64,Amanda Childs,amanda@agilitycms.com,amanda@agilitycms.com,G2 Profile Anatomy,,2022-10-03 13:33:10,,,,,,,G2 +65,Amanda Childs,amanda@agilitycms.com,amanda@agilitycms.com,Profile Performance & Lead Management,,2022-10-03 13:33:10,,,,,,,G2 +66,Zdenka Navarikova,zdenka.navarikova@legito.com,zdenka.navarikova@legito.com,Profile Performance & Lead Management,LIVE,2022-10-03 13:23:01,2022-10-10 11:31:13,,1,50%,Your Competitors,2022-10-10 11:58:39,G2 +67,Zdenka Navarikova,zdenka.navarikova@legito.com,zdenka.navarikova@legito.com,Review Tracking & Brand Building,,2022-10-03 13:23:01,,,,,,,G2 +68,Zdenka Navarikova,zdenka.navarikova@legito.com,zdenka.navarikova@legito.com,The Review Rundown,,2022-10-03 13:23:01,,,,,,,G2 +69,Zdenka Navarikova,zdenka.navarikova@legito.com,zdenka.navarikova@legito.com,G2 Profile Anatomy,20,2022-10-03 13:23:01,2022-10-10 11:00:30,2022-10-10 11:29:22,1,100%,Top Tips Recap,2022-10-10 11:29:22,G2 +70,Jeremy Sacramento,jeremy.sacramento@dreamdata.io,jeremy.sacramento@dreamdata.io,The Review Rundown,,2022-10-03 12:58:25,,,,,,,G2 +71,Jeremy Sacramento,jeremy.sacramento@dreamdata.io,jeremy.sacramento@dreamdata.io,Profile Performance & Lead Management,,2022-10-03 12:58:25,,,,,,,G2 +72,Jeremy Sacramento,jeremy.sacramento@dreamdata.io,jeremy.sacramento@dreamdata.io,G2 Profile Anatomy,,2022-10-03 12:58:25,,,,,,,G2 +73,Jeremy Sacramento,jeremy.sacramento@dreamdata.io,jeremy.sacramento@dreamdata.io,Review Tracking & Brand Building,,2022-10-03 12:58:25,,,,,,,G2 +74,Emma Corbett,ecorbett@ecanvasser.com,ecorbett@ecanvasser.com,Review Tracking & Brand Building,,2022-10-03 12:33:29,,,,,,,G2 +75,Emma Corbett,ecorbett@ecanvasser.com,ecorbett@ecanvasser.com,Profile Performance & Lead Management,,2022-10-03 12:33:29,,,,,,,G2 +76,Emma Corbett,ecorbett@ecanvasser.com,ecorbett@ecanvasser.com,G2 Profile Anatomy,,2022-10-03 12:33:29,,,,,,,G2 +77,Emma Corbett,ecorbett@ecanvasser.com,ecorbett@ecanvasser.com,The Review Rundown,,2022-10-03 12:33:29,,,,,,,G2 +78,Anoop Nair,anair@g2.com,anair@g2.com,G2 Profile Anatomy,,2022-10-03 12:07:09,,,,,,,G2 +79,Anoop Nair,anair@g2.com,anair@g2.com,Profile Performance & Lead Management,,2022-10-03 12:07:09,,,,,,,G2 +80,Anoop Nair,anair@g2.com,anair@g2.com,Review Tracking & Brand Building,,2022-10-03 12:07:09,,,,,,,G2 +81,Anoop Nair,anair@g2.com,anair@g2.com,The Review Rundown,,2022-10-03 12:07:09,,,,,,,G2 +82,Keshav Pushadappu,kpushadappu@g2.com,kpushadappu@g2.com,Profile Performance & Lead Management,,2022-10-03 12:06:04,,,,,,,G2 +83,Keshav Pushadappu,kpushadappu@g2.com,kpushadappu@g2.com,Review Tracking & Brand Building,,2022-10-03 12:06:04,,,,,,,G2 +84,Keshav Pushadappu,kpushadappu@g2.com,kpushadappu@g2.com,The Review Rundown,,2022-10-03 12:06:04,,,,,,,G2 +85,Keshav Pushadappu,kpushadappu@g2.com,kpushadappu@g2.com,G2 Profile Anatomy,,2022-10-03 12:06:04,,,,,,,G2 +86,Satish Bora,satish@nops.io,satish@nops.io,Buyer Intent Basics,LIVE,2022-10-03 11:19:07,2022-10-03 11:19:07,2022-10-03 11:30:19,1,100%,Integrations,2022-10-03 11:30:20,G2 +87,Satish Bora,satish@nops.io,satish@nops.io,Profile Performance & Lead Management,LIVE,2022-10-03 11:18:18,2022-10-03 11:30:46,,1,0%,,,G2 +88,Satish Bora,satish@nops.io,satish@nops.io,Review Tracking & Brand Building,,2022-10-03 11:18:18,,,,,,,G2 +89,Satish Bora,satish@nops.io,satish@nops.io,The Review Rundown,,2022-10-03 11:18:18,,,,,,,G2 +90,Satish Bora,satish@nops.io,satish@nops.io,G2 Profile Anatomy,,2022-10-03 11:18:18,,,,,,,G2 +91,Lucy Allen,lucy.allen@linnworks.com,lucy.allen@linnworks.com,Profile Performance & Lead Management,,2022-10-03 10:47:03,,,,,,,G2 +92,Lucy Allen,lucy.allen@linnworks.com,lucy.allen@linnworks.com,G2 Profile Anatomy,,2022-10-03 10:47:03,,,,,,,G2 +93,Lucy Allen,lucy.allen@linnworks.com,lucy.allen@linnworks.com,Review Tracking & Brand Building,,2022-10-03 10:47:03,,,,,,,G2 +94,Lucy Allen,lucy.allen@linnworks.com,lucy.allen@linnworks.com,The Review Rundown,LIVE,2022-10-03 10:47:03,2022-10-03 10:47:21,2022-10-06 14:48:13,1,100%,Review Moderation,2022-10-06 14:48:14,G2 +95,Tommaso Di Stefano,tommaso@softr.io,tommaso@softr.io,Review Tracking & Brand Building,,2022-10-03 10:34:08,,,,,,,G2 +96,Tommaso Di Stefano,tommaso@softr.io,tommaso@softr.io,Profile Performance & Lead Management,,2022-10-03 10:34:08,,,,,,,G2 +97,Tommaso Di Stefano,tommaso@softr.io,tommaso@softr.io,G2 Profile Anatomy,,2022-10-03 10:34:08,,,,,,,G2 +98,Tommaso Di Stefano,tommaso@softr.io,tommaso@softr.io,The Review Rundown,,2022-10-03 10:34:08,,,,,,,G2 +99,Pim van Willige,pim.vanwillige@storyteq.com,pim.vanwillige@storyteq.com,G2 Profile Anatomy,,2022-10-03 09:55:40,,,,,,,G2 +100,Pim van Willige,pim.vanwillige@storyteq.com,pim.vanwillige@storyteq.com,Review Tracking & Brand Building,,2022-10-03 09:55:40,,,,,,,G2 +101,Pim van Willige,pim.vanwillige@storyteq.com,pim.vanwillige@storyteq.com,The Review Rundown,,2022-10-03 09:55:40,,,,,,,G2 +102,Pim van Willige,pim.vanwillige@storyteq.com,pim.vanwillige@storyteq.com,Profile Performance & Lead Management,,2022-10-03 09:55:40,,,,,,,G2 +103,David Turner,david.turner@external.thalesgroup.com,david.turner@external.thalesgroup.com,Profile Performance & Lead Management,LIVE,2022-10-03 07:03:04,2022-10-03 08:21:15,2022-10-03 08:26:36,1,100%,Lead Webhooks,2022-10-03 08:26:37,G2 +104,David Turner,david.turner@external.thalesgroup.com,david.turner@external.thalesgroup.com,The Review Rundown,LIVE,2022-10-03 07:03:04,2022-10-03 07:06:22,2022-10-03 07:39:24,1,100%,Review Moderation,2022-10-03 07:39:24,G2 +105,David Turner,david.turner@external.thalesgroup.com,david.turner@external.thalesgroup.com,G2 Profile Anatomy,20,2022-10-03 07:03:04,2022-10-03 07:05:40,2022-11-02 11:54:57,1,100%,Top Tips Recap,2022-11-02 11:54:57,G2 +106,David Turner,david.turner@external.thalesgroup.com,david.turner@external.thalesgroup.com,Review Tracking & Brand Building,LIVE,2022-10-03 07:03:04,2022-11-02 11:56:08,,2,0%,,2022-11-02 11:56:08,G2 +107,David Turner,david.turner@external.thalesgroup.com,david.turner@external.thalesgroup.com,Review Tracking & Brand Building,LIVE,2022-10-03 07:03:04,2022-10-03 07:41:10,2022-10-03 08:20:52,1,100%,Review Integrations,2022-10-03 08:20:53,G2 +108,Renee Chemel,renee@proggio.com,renee@proggio.com,Profile Performance & Lead Management,,2022-10-02 09:33:26,,,,,,,G2 +109,Renee Chemel,renee@proggio.com,renee@proggio.com,The Review Rundown,,2022-10-02 09:33:26,,,,,,,G2 +110,Renee Chemel,renee@proggio.com,renee@proggio.com,G2 Profile Anatomy,,2022-10-02 09:33:26,,,,,,,G2 +111,Renee Chemel,renee@proggio.com,renee@proggio.com,Review Tracking & Brand Building,,2022-10-02 09:33:26,,,,,,,G2 +112,Steve Holt,sholt@siftscience.com,sholt@siftscience.com,Buyer Intent Basics,LIVE,2022-09-30 23:31:30,2022-09-30 23:31:30,,1,0%,,,G2 +113,Steve Holt,sholt@siftscience.com,sholt@siftscience.com,The Review Rundown,,2022-09-30 23:31:01,,,,,,,G2 +114,Steve Holt,sholt@siftscience.com,sholt@siftscience.com,Profile Performance & Lead Management,,2022-09-30 23:31:01,,,,,,,G2 +115,Steve Holt,sholt@siftscience.com,sholt@siftscience.com,G2 Profile Anatomy,,2022-09-30 23:31:01,,,,,,,G2 +116,Steve Holt,sholt@siftscience.com,sholt@siftscience.com,Review Tracking & Brand Building,,2022-09-30 23:31:01,,,,,,,G2 +117,Matt Dougherty,matt.dougherty@not-me.com,matt.dougherty@not-me.com,Review Tracking & Brand Building,,2022-09-30 23:04:38,,,,,,,G2 +118,Matt Dougherty,matt.dougherty@not-me.com,matt.dougherty@not-me.com,The Review Rundown,,2022-09-30 23:04:38,,,,,,,G2 +119,Matt Dougherty,matt.dougherty@not-me.com,matt.dougherty@not-me.com,G2 Profile Anatomy,,2022-09-30 23:04:38,,,,,,,G2 +120,Matt Dougherty,matt.dougherty@not-me.com,matt.dougherty@not-me.com,Profile Performance & Lead Management,,2022-09-30 23:04:38,,,,,,,G2 +121,Demian Shoemaker,demians@mangoapps.com,demians@mangoapps.com,Profile Performance & Lead Management,LIVE,2022-09-30 21:44:55,2022-09-30 21:45:59,2022-09-30 21:51:20,1,100%,Lead Webhooks,2022-09-30 21:51:20,G2 +122,Demian Shoemaker,demians@mangoapps.com,demians@mangoapps.com,The Review Rundown,,2022-09-30 21:44:55,,,,,,,G2 +123,Demian Shoemaker,demians@mangoapps.com,demians@mangoapps.com,Review Tracking & Brand Building,,2022-09-30 21:44:55,,,,,,,G2 +124,Demian Shoemaker,demians@mangoapps.com,demians@mangoapps.com,G2 Profile Anatomy,20,2022-09-30 21:44:55,2022-09-30 21:45:13,,1,0%,,,G2 +125,Conrado De La Rosa,cdelarosa@g2.com,cdelarosa@g2.com,G2 Profile Anatomy,20,2022-09-30 21:27:32,2022-09-30 21:27:41,,1,0%,,,G2 +126,Conrado De La Rosa,cdelarosa@g2.com,cdelarosa@g2.com,The Review Rundown,,2022-09-30 21:27:32,,,,,,,G2 +127,Conrado De La Rosa,cdelarosa@g2.com,cdelarosa@g2.com,Review Tracking & Brand Building,,2022-09-30 21:27:32,,,,,,,G2 +128,Conrado De La Rosa,cdelarosa@g2.com,cdelarosa@g2.com,Profile Performance & Lead Management,,2022-09-30 21:27:32,,,,,,,G2 +129,Krissy Weekley,krissy@stagebase.com,krissy@stagebase.com,The Review Rundown,,2022-09-30 19:58:51,,,,,,,G2 +130,Krissy Weekley,krissy@stagebase.com,krissy@stagebase.com,Profile Performance & Lead Management,,2022-09-30 19:58:51,,,,,,,G2 +131,Krissy Weekley,krissy@stagebase.com,krissy@stagebase.com,G2 Profile Anatomy,,2022-09-30 19:58:51,,,,,,,G2 +132,Krissy Weekley,krissy@stagebase.com,krissy@stagebase.com,Review Tracking & Brand Building,,2022-09-30 19:58:51,,,,,,,G2 +133,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,How to Use Buyer Intent,LIVE,2022-09-30 19:33:47,2022-09-30 19:33:48,2022-09-30 19:39:21,1,100%,Buyer Intent Score Filter Recommendations,2022-09-30 19:39:21,G2 +134,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,Buyer Intent Basics,LIVE,2022-09-30 19:26:03,2022-09-30 19:26:03,2022-09-30 19:33:39,1,100%,Integrations,2022-09-30 19:33:39,G2 +135,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,Profile Performance & Lead Management,,2022-09-30 19:24:41,,,,,,,G2 +136,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,The Review Rundown,,2022-09-30 19:24:41,,,,,,,G2 +137,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,Review Tracking & Brand Building,,2022-09-30 19:24:41,,,,,,,G2 +138,Beau Beamon,bbeamon@axway.com,bbeamon@axway.com,G2 Profile Anatomy,,2022-09-30 19:24:41,,,,,,,G2 +139,Anne Marie Pollitt,anne@plateiq.com,anne@plateiq.com,Profile Performance & Lead Management,,2022-09-30 19:00:52,,,,,,,G2 +140,Anne Marie Pollitt,anne@plateiq.com,anne@plateiq.com,The Review Rundown,,2022-09-30 19:00:52,,,,,,,G2 +141,Anne Marie Pollitt,anne@plateiq.com,anne@plateiq.com,G2 Profile Anatomy,,2022-09-30 19:00:52,,,,,,,G2 +142,Anne Marie Pollitt,anne@plateiq.com,anne@plateiq.com,Review Tracking & Brand Building,,2022-09-30 19:00:52,,,,,,,G2 +143,Lily Borges,lilyb@knowbe4.com,lilyb@knowbe4.com,Profile Performance & Lead Management,,2022-09-30 17:58:36,,,,,,,G2 +144,Lily Borges,lilyb@knowbe4.com,lilyb@knowbe4.com,Review Tracking & Brand Building,LIVE,2022-09-30 17:58:36,2022-10-10 16:29:16,2022-10-10 16:38:29,1,100%,Review Integrations,2022-10-10 16:38:29,G2 +145,Lily Borges,lilyb@knowbe4.com,lilyb@knowbe4.com,G2 Profile Anatomy,20,2022-09-30 17:58:36,2022-09-30 17:59:25,,1,0%,,,G2 +146,Lily Borges,lilyb@knowbe4.com,lilyb@knowbe4.com,The Review Rundown,,2022-09-30 17:58:36,,,,,,,G2 +147,Anna Lanfreschi,alanfreschi@usertesting.com,alanfreschi@usertesting.com,The Review Rundown,,2022-09-30 17:57:07,,,,,,,G2 +148,Anna Lanfreschi,alanfreschi@usertesting.com,alanfreschi@usertesting.com,Review Tracking & Brand Building,,2022-09-30 17:57:07,,,,,,,G2 +149,Anna Lanfreschi,alanfreschi@usertesting.com,alanfreschi@usertesting.com,G2 Profile Anatomy,,2022-09-30 17:57:07,,,,,,,G2 +150,Anna Lanfreschi,alanfreschi@usertesting.com,alanfreschi@usertesting.com,Profile Performance & Lead Management,,2022-09-30 17:57:07,,,,,,,G2 +151,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,Preparing for G2 Reports,LIVE,2022-09-30 17:35:35,2022-09-30 17:35:36,,1,0%,,,G2 +152,Alyssa Rogers,alyssa.rogers@split.io,alyssa.rogers@split.io,How to Respond to Reviews,LIVE,2022-09-30 17:10:48,2022-09-30 17:10:49,,1,0%,,,G2 +153,Alyssa Rogers,alyssa.rogers@split.io,alyssa.rogers@split.io,G2 Profile Anatomy,,2022-09-30 17:10:19,,,,,,,G2 +154,Alyssa Rogers,alyssa.rogers@split.io,alyssa.rogers@split.io,Profile Performance & Lead Management,,2022-09-30 17:10:19,,,,,,,G2 +155,Alyssa Rogers,alyssa.rogers@split.io,alyssa.rogers@split.io,The Review Rundown,,2022-09-30 17:10:19,,,,,,,G2 +156,Alyssa Rogers,alyssa.rogers@split.io,alyssa.rogers@split.io,Review Tracking & Brand Building,,2022-09-30 17:10:19,,,,,,,G2 +157,Josh Baxter,jbaxter@g2.com,jbaxter@g2.com,How to Use Buyer Intent,LIVE,2022-09-30 15:30:21,2022-09-30 15:30:22,,1,0%,,,G2 +158,Josh Baxter,jbaxter@g2.com,jbaxter@g2.com,The Review Rundown,,2022-09-30 15:27:12,,,,,,,G2 +159,Josh Baxter,jbaxter@g2.com,jbaxter@g2.com,G2 Profile Anatomy,,2022-09-30 15:27:12,,,,,,,G2 +160,Josh Baxter,jbaxter@g2.com,jbaxter@g2.com,Profile Performance & Lead Management,,2022-09-30 15:27:12,,,,,,,G2 +161,Josh Baxter,jbaxter@g2.com,jbaxter@g2.com,Review Tracking & Brand Building,,2022-09-30 15:27:12,,,,,,,G2 +162,Ben Omesi,ben.omesi@mixpanel.com,ben.omesi@mixpanel.com,The Review Rundown,,2022-09-30 14:24:52,,,,,,,G2 +163,Ben Omesi,ben.omesi@mixpanel.com,ben.omesi@mixpanel.com,Review Tracking & Brand Building,,2022-09-30 14:24:52,,,,,,,G2 +164,Ben Omesi,ben.omesi@mixpanel.com,ben.omesi@mixpanel.com,Profile Performance & Lead Management,LIVE,2022-09-30 14:24:52,2022-09-30 14:25:34,,1,0%,,,G2 +165,Ben Omesi,ben.omesi@mixpanel.com,ben.omesi@mixpanel.com,G2 Profile Anatomy,20,2022-09-30 14:24:52,2022-09-30 14:25:01,,1,0%,,,G2 +166,Cameron Hail,chail@g2.com,chail@g2.com,Review Tracking & Brand Building,,2022-09-30 14:07:20,,,,,,,G2 +167,Cameron Hail,chail@g2.com,chail@g2.com,The Review Rundown,,2022-09-30 14:07:20,,,,,,,G2 +168,Cameron Hail,chail@g2.com,chail@g2.com,G2 Profile Anatomy,,2022-09-30 14:07:20,,,,,,,G2 +169,Cameron Hail,chail@g2.com,chail@g2.com,Profile Performance & Lead Management,,2022-09-30 14:07:20,,,,,,,G2 +170,Josh Aldred,jaldred@osano.com,jaldred@osano.com,Profile Performance & Lead Management,,2022-09-30 13:21:44,,,,,,,G2 +171,Josh Aldred,jaldred@osano.com,jaldred@osano.com,The Review Rundown,,2022-09-30 13:21:44,,,,,,,G2 +172,Josh Aldred,jaldred@osano.com,jaldred@osano.com,Review Tracking & Brand Building,,2022-09-30 13:21:44,,,,,,,G2 +173,Josh Aldred,jaldred@osano.com,jaldred@osano.com,G2 Profile Anatomy,,2022-09-30 13:21:44,,,,,,,G2 +174,Valeria Doldan,valeria@uxcam.com,valeria@uxcam.com,Profile Performance & Lead Management,,2022-09-30 12:54:50,,,,,,,G2 +175,Valeria Doldan,valeria@uxcam.com,valeria@uxcam.com,G2 Profile Anatomy,,2022-09-30 12:54:50,,,,,,,G2 +176,Valeria Doldan,valeria@uxcam.com,valeria@uxcam.com,The Review Rundown,,2022-09-30 12:54:50,,,,,,,G2 +177,Valeria Doldan,valeria@uxcam.com,valeria@uxcam.com,Review Tracking & Brand Building,,2022-09-30 12:54:50,,,,,,,G2 +178,Eliana Rodwell,eliana.rodwell@mixpanel.com,eliana.rodwell@mixpanel.com,The Review Rundown,,2022-09-30 11:35:25,,,,,,,G2 +179,Eliana Rodwell,eliana.rodwell@mixpanel.com,eliana.rodwell@mixpanel.com,Review Tracking & Brand Building,,2022-09-30 11:35:25,,,,,,,G2 +180,Eliana Rodwell,eliana.rodwell@mixpanel.com,eliana.rodwell@mixpanel.com,Profile Performance & Lead Management,LIVE,2022-09-30 11:35:25,2022-09-30 11:35:42,,1,0%,,,G2 +181,Eliana Rodwell,eliana.rodwell@mixpanel.com,eliana.rodwell@mixpanel.com,G2 Profile Anatomy,,2022-09-30 11:35:25,,,,,,,G2 +182,Bruno Campos,bcampos@canto.com,bcampos@canto.com,Review Tracking & Brand Building,,2022-09-30 11:20:32,,,,,,,G2 +183,Bruno Campos,bcampos@canto.com,bcampos@canto.com,Profile Performance & Lead Management,,2022-09-30 11:20:32,,,,,,,G2 +184,Bruno Campos,bcampos@canto.com,bcampos@canto.com,G2 Profile Anatomy,,2022-09-30 11:20:32,,,,,,,G2 +185,Bruno Campos,bcampos@canto.com,bcampos@canto.com,The Review Rundown,,2022-09-30 11:20:32,,,,,,,G2 +186,Brendan Dykes,brendan.dykes@genesys.com,brendan.dykes@genesys.com,Profile Performance & Lead Management,,2022-09-30 10:57:47,,,,,,,G2 +187,Brendan Dykes,brendan.dykes@genesys.com,brendan.dykes@genesys.com,Review Tracking & Brand Building,,2022-09-30 10:57:47,,,,,,,G2 +188,Brendan Dykes,brendan.dykes@genesys.com,brendan.dykes@genesys.com,G2 Profile Anatomy,20,2022-09-30 10:57:47,2022-09-30 10:58:40,,1,0%,,,G2 +189,Brendan Dykes,brendan.dykes@genesys.com,brendan.dykes@genesys.com,The Review Rundown,,2022-09-30 10:57:47,,,,,,,G2 +190,Greta Budraitytė,g.budraityte@gmail.com,g.budraityte@gmail.com,The Review Rundown,,2022-09-30 09:57:35,,,,,,,G2 +191,Greta Budraitytė,g.budraityte@gmail.com,g.budraityte@gmail.com,Profile Performance & Lead Management,,2022-09-30 09:57:35,,,,,,,G2 +192,Greta Budraitytė,g.budraityte@gmail.com,g.budraityte@gmail.com,Review Tracking & Brand Building,,2022-09-30 09:57:35,,,,,,,G2 +193,Greta Budraitytė,g.budraityte@gmail.com,g.budraityte@gmail.com,G2 Profile Anatomy,,2022-09-30 09:57:35,,,,,,,G2 +194,Fani Yaneva ,fyaneva@jamasoftware.com,fyaneva@jamasoftware.com,The Review Rundown,,2022-09-30 09:46:10,,,,,,,G2 +195,Fani Yaneva ,fyaneva@jamasoftware.com,fyaneva@jamasoftware.com,G2 Profile Anatomy,,2022-09-30 09:46:10,,,,,,,G2 +196,Fani Yaneva ,fyaneva@jamasoftware.com,fyaneva@jamasoftware.com,Review Tracking & Brand Building,,2022-09-30 09:46:10,,,,,,,G2 +197,Fani Yaneva ,fyaneva@jamasoftware.com,fyaneva@jamasoftware.com,Profile Performance & Lead Management,,2022-09-30 09:46:10,,,,,,,G2 +198,Andy Gilhooley,andy.gilhooley@redeye.com,andy.gilhooley@redeye.com,Profile Performance & Lead Management,,2022-09-30 09:17:52,,,,,,,G2 +199,Andy Gilhooley,andy.gilhooley@redeye.com,andy.gilhooley@redeye.com,G2 Profile Anatomy,,2022-09-30 09:17:52,,,,,,,G2 +200,Andy Gilhooley,andy.gilhooley@redeye.com,andy.gilhooley@redeye.com,The Review Rundown,LIVE,2022-09-30 09:17:52,2022-09-30 09:18:51,,1,0%,,,G2 +201,Andy Gilhooley,andy.gilhooley@redeye.com,andy.gilhooley@redeye.com,Review Tracking & Brand Building,,2022-09-30 09:17:52,,,,,,,G2 +202,Nicolas Chaves,nicolas.chaves@watchguard.com,nicolas.chaves@watchguard.com,Review Tracking & Brand Building,,2022-09-30 08:36:48,,,,,,,G2 +203,Nicolas Chaves,nicolas.chaves@watchguard.com,nicolas.chaves@watchguard.com,The Review Rundown,,2022-09-30 08:36:48,,,,,,,G2 +204,Nicolas Chaves,nicolas.chaves@watchguard.com,nicolas.chaves@watchguard.com,G2 Profile Anatomy,,2022-09-30 08:36:48,,,,,,,G2 +205,Nicolas Chaves,nicolas.chaves@watchguard.com,nicolas.chaves@watchguard.com,Profile Performance & Lead Management,,2022-09-30 08:36:48,,,,,,,G2 +206,LucaNet Software,marketing@lucanet.com,marketing@lucanet.com,Profile Performance & Lead Management,,2022-09-30 08:18:57,,,,,,,G2 +207,LucaNet Software,marketing@lucanet.com,marketing@lucanet.com,Review Tracking & Brand Building,,2022-09-30 08:18:57,,,,,,,G2 +208,LucaNet Software,marketing@lucanet.com,marketing@lucanet.com,G2 Profile Anatomy,,2022-09-30 08:18:57,,,,,,,G2 +209,LucaNet Software,marketing@lucanet.com,marketing@lucanet.com,The Review Rundown,,2022-09-30 08:18:57,,,,,,,G2 +210,Stefan Bulatovic,s.bulatovic@affise.com,s.bulatovic@affise.com,Profile Performance & Lead Management,,2022-09-30 07:41:07,,,,,,,G2 +211,Stefan Bulatovic,s.bulatovic@affise.com,s.bulatovic@affise.com,Review Tracking & Brand Building,LIVE,2022-09-30 07:41:07,2022-09-30 07:41:40,2022-09-30 07:52:36,1,100%,Review Integrations,2022-09-30 07:52:36,G2 +212,Stefan Bulatovic,s.bulatovic@affise.com,s.bulatovic@affise.com,G2 Profile Anatomy,,2022-09-30 07:41:07,,,,,,,G2 +213,Stefan Bulatovic,s.bulatovic@affise.com,s.bulatovic@affise.com,The Review Rundown,,2022-09-30 07:41:07,,,,,,,G2 +214,Nitesh Sharma,nitesh.sharma@hevodata.com,nitesh.sharma@hevodata.com,G2 Profile Anatomy,,2022-09-30 07:27:46,,,,,,,G2 +215,Nitesh Sharma,nitesh.sharma@hevodata.com,nitesh.sharma@hevodata.com,The Review Rundown,,2022-09-30 07:27:46,,,,,,,G2 +216,Nitesh Sharma,nitesh.sharma@hevodata.com,nitesh.sharma@hevodata.com,Review Tracking & Brand Building,,2022-09-30 07:27:46,,,,,,,G2 +217,Nitesh Sharma,nitesh.sharma@hevodata.com,nitesh.sharma@hevodata.com,Profile Performance & Lead Management,,2022-09-30 07:27:46,,,,,,,G2 +218,Daryl Thomas,dthomas@g2.com,dthomas@g2.com,Profile Performance & Lead Management,,2022-09-30 07:17:30,,,,,,,G2 +219,Daryl Thomas,dthomas@g2.com,dthomas@g2.com,The Review Rundown,,2022-09-30 07:17:30,,,,,,,G2 +220,Daryl Thomas,dthomas@g2.com,dthomas@g2.com,Review Tracking & Brand Building,,2022-09-30 07:17:30,,,,,,,G2 +221,Daryl Thomas,dthomas@g2.com,dthomas@g2.com,G2 Profile Anatomy,,2022-09-30 07:17:30,,,,,,,G2 +222,Sascha De Veirman,sascha.deveirman@flowsparks.com,sascha.deveirman@flowsparks.com,The Review Rundown,,2022-09-30 06:56:42,,,,,,,G2 +223,Sascha De Veirman,sascha.deveirman@flowsparks.com,sascha.deveirman@flowsparks.com,G2 Profile Anatomy,,2022-09-30 06:56:42,,,,,,,G2 +224,Sascha De Veirman,sascha.deveirman@flowsparks.com,sascha.deveirman@flowsparks.com,Profile Performance & Lead Management,,2022-09-30 06:56:42,,,,,,,G2 +225,Sascha De Veirman,sascha.deveirman@flowsparks.com,sascha.deveirman@flowsparks.com,Review Tracking & Brand Building,,2022-09-30 06:56:42,,,,,,,G2 +226,Ravin Ramakrishnan,ravin.ramakrishnan@mixpanel.com,ravin.ramakrishnan@mixpanel.com,Review Tracking & Brand Building,,2022-09-30 06:27:36,,,,,,,G2 +227,Ravin Ramakrishnan,ravin.ramakrishnan@mixpanel.com,ravin.ramakrishnan@mixpanel.com,Profile Performance & Lead Management,,2022-09-30 06:27:36,,,,,,,G2 +228,Ravin Ramakrishnan,ravin.ramakrishnan@mixpanel.com,ravin.ramakrishnan@mixpanel.com,The Review Rundown,,2022-09-30 06:27:36,,,,,,,G2 +229,Ravin Ramakrishnan,ravin.ramakrishnan@mixpanel.com,ravin.ramakrishnan@mixpanel.com,G2 Profile Anatomy,,2022-09-30 06:27:36,,,,,,,G2 +230,Ishika Jain,ishikajain@targetg.in,ishikajain@targetg.in,The Review Rundown,,2022-09-30 06:26:10,,,,,,,G2 +231,Ishika Jain,ishikajain@targetg.in,ishikajain@targetg.in,Profile Performance & Lead Management,,2022-09-30 06:26:10,,,,,,,G2 +232,Ishika Jain,ishikajain@targetg.in,ishikajain@targetg.in,G2 Profile Anatomy,,2022-09-30 06:26:10,,,,,,,G2 +233,Ishika Jain,ishikajain@targetg.in,ishikajain@targetg.in,Review Tracking & Brand Building,,2022-09-30 06:26:10,,,,,,,G2 +234,Eden Lau,eden.lau@mixpanel.com,eden.lau@mixpanel.com,The Review Rundown,,2022-09-30 06:19:45,,,,,,,G2 +235,Eden Lau,eden.lau@mixpanel.com,eden.lau@mixpanel.com,Profile Performance & Lead Management,,2022-09-30 06:19:45,,,,,,,G2 +236,Eden Lau,eden.lau@mixpanel.com,eden.lau@mixpanel.com,G2 Profile Anatomy,,2022-09-30 06:19:45,,,,,,,G2 +237,Eden Lau,eden.lau@mixpanel.com,eden.lau@mixpanel.com,Review Tracking & Brand Building,,2022-09-30 06:19:45,,,,,,,G2 +238,John Croll,john@truescope.com,john@truescope.com,Profile Performance & Lead Management,,2022-09-30 05:00:57,,,,,,,G2 +239,John Croll,john@truescope.com,john@truescope.com,The Review Rundown,,2022-09-30 05:00:57,,,,,,,G2 +240,John Croll,john@truescope.com,john@truescope.com,Review Tracking & Brand Building,,2022-09-30 05:00:57,,,,,,,G2 +241,John Croll,john@truescope.com,john@truescope.com,G2 Profile Anatomy,,2022-09-30 05:00:57,,,,,,,G2 +242,Rick Boggs,rick.boggs@limblecmms.com,rick.boggs@limblecmms.com,Profile Performance & Lead Management,,2022-09-30 04:49:44,,,,,,,G2 +243,Rick Boggs,rick.boggs@limblecmms.com,rick.boggs@limblecmms.com,Review Tracking & Brand Building,,2022-09-30 04:49:44,,,,,,,G2 +244,Rick Boggs,rick.boggs@limblecmms.com,rick.boggs@limblecmms.com,G2 Profile Anatomy,,2022-09-30 04:49:44,,,,,,,G2 +245,Rick Boggs,rick.boggs@limblecmms.com,rick.boggs@limblecmms.com,The Review Rundown,LIVE,2022-09-30 04:49:44,2022-09-30 04:50:29,2022-09-30 04:57:15,1,100%,Review Moderation,2022-09-30 04:57:16,G2 +246,Hari Krishna,harikrishna.p@chargebee.com,harikrishna.p@chargebee.com,The Review Rundown,LIVE,2022-09-30 04:06:57,2022-10-08 11:21:11,2022-10-08 12:02:12,1,100%,Review Moderation,2022-10-08 12:02:12,G2 +247,Hari Krishna,harikrishna.p@chargebee.com,harikrishna.p@chargebee.com,Profile Performance & Lead Management,,2022-09-30 04:06:57,,,,,,,G2 +248,Hari Krishna,harikrishna.p@chargebee.com,harikrishna.p@chargebee.com,Review Tracking & Brand Building,LIVE,2022-09-30 04:06:57,2022-10-08 12:03:29,,1,0%,,,G2 +249,Hari Krishna,harikrishna.p@chargebee.com,harikrishna.p@chargebee.com,G2 Profile Anatomy,20,2022-09-30 04:06:57,2022-09-30 04:07:27,2022-10-05 06:50:50,1,100%,Top Tips Recap,2022-10-05 06:50:50,G2 +250,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,Buyer Intent Basics,LIVE,2022-09-30 04:05:29,2022-09-30 04:05:29,,1,17%,What is Buyer Intent and why is it beneficial?,2022-09-30 17:16:17,G2 +251,Chaun Klemetsrud,chaun.klemetsrud@arcticwolf.com,chaun.klemetsrud@arcticwolf.com,Profile Performance & Lead Management,,2022-09-30 01:43:58,,,,,,,G2 +252,Chaun Klemetsrud,chaun.klemetsrud@arcticwolf.com,chaun.klemetsrud@arcticwolf.com,Review Tracking & Brand Building,,2022-09-30 01:43:58,,,,,,,G2 +253,Chaun Klemetsrud,chaun.klemetsrud@arcticwolf.com,chaun.klemetsrud@arcticwolf.com,G2 Profile Anatomy,,2022-09-30 01:43:58,,,,,,,G2 +254,Chaun Klemetsrud,chaun.klemetsrud@arcticwolf.com,chaun.klemetsrud@arcticwolf.com,The Review Rundown,,2022-09-30 01:43:58,,,,,,,G2 +255,Kathleen Ojo,kathleen.ojo@humaninterest.com,kathleen.ojo@humaninterest.com,The Review Rundown,,2022-09-30 01:06:09,,,,,,,G2 +256,Kathleen Ojo,kathleen.ojo@humaninterest.com,kathleen.ojo@humaninterest.com,Profile Performance & Lead Management,,2022-09-30 01:06:09,,,,,,,G2 +257,Kathleen Ojo,kathleen.ojo@humaninterest.com,kathleen.ojo@humaninterest.com,G2 Profile Anatomy,,2022-09-30 01:06:09,,,,,,,G2 +258,Kathleen Ojo,kathleen.ojo@humaninterest.com,kathleen.ojo@humaninterest.com,Review Tracking & Brand Building,,2022-09-30 01:06:09,,,,,,,G2 +259,Lauren Benefico,lbenefico@g2.com,lbenefico@g2.com,Profile Performance & Lead Management,,2022-09-29 23:33:20,,,,,,,G2 +260,Lauren Benefico,lbenefico@g2.com,lbenefico@g2.com,The Review Rundown,,2022-09-29 23:33:20,,,,,,,G2 +261,Lauren Benefico,lbenefico@g2.com,lbenefico@g2.com,Review Tracking & Brand Building,,2022-09-29 23:33:20,,,,,,,G2 +262,Lauren Benefico,lbenefico@g2.com,lbenefico@g2.com,G2 Profile Anatomy,20,2022-09-29 23:33:20,2022-10-13 21:45:05,,1,0%,,,G2 +263,Milan Kamimura,milan.kamimura@geocomply.com,milan.kamimura@geocomply.com,G2 Profile Anatomy,,2022-09-29 22:15:48,,,,,,,G2 +264,Milan Kamimura,milan.kamimura@geocomply.com,milan.kamimura@geocomply.com,The Review Rundown,,2022-09-29 22:15:48,,,,,,,G2 +265,Milan Kamimura,milan.kamimura@geocomply.com,milan.kamimura@geocomply.com,Review Tracking & Brand Building,,2022-09-29 22:15:48,,,,,,,G2 +266,Milan Kamimura,milan.kamimura@geocomply.com,milan.kamimura@geocomply.com,Profile Performance & Lead Management,,2022-09-29 22:15:48,,,,,,,G2 +267,Sydney Perez,sydney.perez@dialpad.com,sydney.perez@dialpad.com,Profile Performance & Lead Management,,2022-09-29 21:15:42,,,,,,,G2 +268,Sydney Perez,sydney.perez@dialpad.com,sydney.perez@dialpad.com,G2 Profile Anatomy,,2022-09-29 21:15:42,,,,,,,G2 +269,Sydney Perez,sydney.perez@dialpad.com,sydney.perez@dialpad.com,Review Tracking & Brand Building,,2022-09-29 21:15:42,,,,,,,G2 +270,Sydney Perez,sydney.perez@dialpad.com,sydney.perez@dialpad.com,The Review Rundown,,2022-09-29 21:15:42,,,,,,,G2 +271,Larissa DiStefano,larissa.distefano@saleshood.com,larissa.distefano@saleshood.com,Profile Performance & Lead Management,,2022-09-29 21:15:41,,,,,,,G2 +272,Larissa DiStefano,larissa.distefano@saleshood.com,larissa.distefano@saleshood.com,Review Tracking & Brand Building,,2022-09-29 21:15:41,,,,,,,G2 +273,Larissa DiStefano,larissa.distefano@saleshood.com,larissa.distefano@saleshood.com,The Review Rundown,,2022-09-29 21:15:41,,,,,,,G2 +274,Larissa DiStefano,larissa.distefano@saleshood.com,larissa.distefano@saleshood.com,G2 Profile Anatomy,,2022-09-29 21:15:41,,,,,,,G2 +275,"Rachel Maner, CDMP",rmaner@apspayroll.com,rmaner@apspayroll.com,The Review Rundown,,2022-09-29 21:04:54,,,,,,,G2 +276,"Rachel Maner, CDMP",rmaner@apspayroll.com,rmaner@apspayroll.com,G2 Profile Anatomy,20,2022-09-29 21:04:54,2022-09-29 21:05:02,,1,0%,,,G2 +277,"Rachel Maner, CDMP",rmaner@apspayroll.com,rmaner@apspayroll.com,Profile Performance & Lead Management,,2022-09-29 21:04:54,,,,,,,G2 +278,"Rachel Maner, CDMP",rmaner@apspayroll.com,rmaner@apspayroll.com,Review Tracking & Brand Building,,2022-09-29 21:04:54,,,,,,,G2 +279,Colin Hogg,colin@couchdrop.io,colin@couchdrop.io,Review Tracking & Brand Building,,2022-09-29 21:00:17,,,,,,,G2 +280,Colin Hogg,colin@couchdrop.io,colin@couchdrop.io,G2 Profile Anatomy,,2022-09-29 21:00:17,,,,,,,G2 +281,Colin Hogg,colin@couchdrop.io,colin@couchdrop.io,Profile Performance & Lead Management,,2022-09-29 21:00:17,,,,,,,G2 +282,Colin Hogg,colin@couchdrop.io,colin@couchdrop.io,The Review Rundown,,2022-09-29 21:00:17,,,,,,,G2 +283,David Flach,david.flach@bloomfire.com,david.flach@bloomfire.com,The Review Rundown,LIVE,2022-09-29 20:55:05,2022-09-29 20:58:38,,1,0%,,,G2 +284,David Flach,david.flach@bloomfire.com,david.flach@bloomfire.com,Profile Performance & Lead Management,,2022-09-29 20:55:05,,,,,,,G2 +285,David Flach,david.flach@bloomfire.com,david.flach@bloomfire.com,Review Tracking & Brand Building,,2022-09-29 20:55:05,,,,,,,G2 +286,David Flach,david.flach@bloomfire.com,david.flach@bloomfire.com,G2 Profile Anatomy,,2022-09-29 20:55:05,,,,,,,G2 +287,Ellie Eisenberg,eeisenberg@learnsoft.com,eeisenberg@learnsoft.com,The Review Rundown,,2022-09-29 20:22:52,,,,,,,G2 +288,Ellie Eisenberg,eeisenberg@learnsoft.com,eeisenberg@learnsoft.com,G2 Profile Anatomy,,2022-09-29 20:22:52,,,,,,,G2 +289,Ellie Eisenberg,eeisenberg@learnsoft.com,eeisenberg@learnsoft.com,Profile Performance & Lead Management,,2022-09-29 20:22:52,,,,,,,G2 +290,Ellie Eisenberg,eeisenberg@learnsoft.com,eeisenberg@learnsoft.com,Review Tracking & Brand Building,,2022-09-29 20:22:52,,,,,,,G2 +291,Larry DeAngelis,ldeangelis@parkplacetech.com,ldeangelis@parkplacetech.com,How to Use Buyer Intent,LIVE,2022-09-29 20:17:31,2022-09-29 20:17:31,,1,40%,Team Goals,2022-09-29 20:19:06,G2 +292,Larry DeAngelis,ldeangelis@parkplacetech.com,ldeangelis@parkplacetech.com,The Review Rundown,,2022-09-29 20:16:29,,,,,,,G2 +293,Larry DeAngelis,ldeangelis@parkplacetech.com,ldeangelis@parkplacetech.com,Review Tracking & Brand Building,,2022-09-29 20:16:29,,,,,,,G2 +294,Larry DeAngelis,ldeangelis@parkplacetech.com,ldeangelis@parkplacetech.com,Profile Performance & Lead Management,,2022-09-29 20:16:29,,,,,,,G2 +295,Larry DeAngelis,ldeangelis@parkplacetech.com,ldeangelis@parkplacetech.com,G2 Profile Anatomy,,2022-09-29 20:16:29,,,,,,,G2 +296,Kendall Kunz,kendall@formsonfire.com,kendall@formsonfire.com,G2 Profile Anatomy,,2022-09-29 19:38:57,,,,,,,G2 +297,Kendall Kunz,kendall@formsonfire.com,kendall@formsonfire.com,Review Tracking & Brand Building,,2022-09-29 19:38:57,,,,,,,G2 +298,Kendall Kunz,kendall@formsonfire.com,kendall@formsonfire.com,The Review Rundown,,2022-09-29 19:38:57,,,,,,,G2 +299,Kendall Kunz,kendall@formsonfire.com,kendall@formsonfire.com,Profile Performance & Lead Management,,2022-09-29 19:38:57,,,,,,,G2 +300,Stef Marin,stef.marin@docebo.com,stef.marin@docebo.com,Profile Performance & Lead Management,,2022-09-29 19:29:08,,,,,,,G2 +301,Stef Marin,stef.marin@docebo.com,stef.marin@docebo.com,Review Tracking & Brand Building,,2022-09-29 19:29:08,,,,,,,G2 +302,Stef Marin,stef.marin@docebo.com,stef.marin@docebo.com,G2 Profile Anatomy,,2022-09-29 19:29:08,,,,,,,G2 +303,Stef Marin,stef.marin@docebo.com,stef.marin@docebo.com,The Review Rundown,,2022-09-29 19:29:08,,,,,,,G2 +304,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,The Review Rundown,,2022-09-29 19:27:30,,,,,,,G2 +305,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,Profile Performance & Lead Management,,2022-09-29 19:27:30,,,,,,,G2 +306,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,Review Tracking & Brand Building,,2022-09-29 19:27:30,,,,,,,G2 +307,Liza McGraw,mcgrawliza@gmail.com,mcgrawliza@gmail.com,G2 Profile Anatomy,,2022-09-29 19:27:30,,,,,,,G2 +308,Robb Henshaw,robb@cameyo.com,robb@cameyo.com,Review Tracking & Brand Building,,2022-09-29 19:19:41,,,,,,,G2 +309,Robb Henshaw,robb@cameyo.com,robb@cameyo.com,Profile Performance & Lead Management,,2022-09-29 19:19:41,,,,,,,G2 +310,Robb Henshaw,robb@cameyo.com,robb@cameyo.com,The Review Rundown,,2022-09-29 19:19:41,,,,,,,G2 +311,Robb Henshaw,robb@cameyo.com,robb@cameyo.com,G2 Profile Anatomy,,2022-09-29 19:19:41,,,,,,,G2 +312,Amy Flaherty,aflaherty@g2.com,aflaherty@g2.com,G2 Profile Anatomy,,2022-09-29 19:19:04,,,,,,,G2 +313,Amy Flaherty,aflaherty@g2.com,aflaherty@g2.com,Review Tracking & Brand Building,,2022-09-29 19:19:04,,,,,,,G2 +314,Amy Flaherty,aflaherty@g2.com,aflaherty@g2.com,Profile Performance & Lead Management,,2022-09-29 19:19:04,,,,,,,G2 +315,Amy Flaherty,aflaherty@g2.com,aflaherty@g2.com,The Review Rundown,,2022-09-29 19:19:04,,,,,,,G2 +316,Davina Novoselac,davina.novoselac@agiloft.com,davina.novoselac@agiloft.com,The Review Rundown,,2022-09-29 19:17:31,,,,,,,G2 +317,Davina Novoselac,davina.novoselac@agiloft.com,davina.novoselac@agiloft.com,G2 Profile Anatomy,,2022-09-29 19:17:31,,,,,,,G2 +318,Davina Novoselac,davina.novoselac@agiloft.com,davina.novoselac@agiloft.com,Profile Performance & Lead Management,,2022-09-29 19:17:31,,,,,,,G2 +319,Davina Novoselac,davina.novoselac@agiloft.com,davina.novoselac@agiloft.com,Review Tracking & Brand Building,,2022-09-29 19:17:31,,,,,,,G2 +320,Madeline Buyers,mbuyers@medallia.com,mbuyers@medallia.com,Profile Performance & Lead Management,,2022-09-29 19:14:28,,,,,,,G2 +321,Madeline Buyers,mbuyers@medallia.com,mbuyers@medallia.com,Review Tracking & Brand Building,,2022-09-29 19:14:28,,,,,,,G2 +322,Madeline Buyers,mbuyers@medallia.com,mbuyers@medallia.com,G2 Profile Anatomy,,2022-09-29 19:14:28,,,,,,,G2 +323,Madeline Buyers,mbuyers@medallia.com,mbuyers@medallia.com,The Review Rundown,,2022-09-29 19:14:28,,,,,,,G2 +324,Sarah McDonald,smcdonald@diligent.com,smcdonald@diligent.com,The Review Rundown,,2022-09-29 19:01:50,,,,,,,G2 +325,Sarah McDonald,smcdonald@diligent.com,smcdonald@diligent.com,G2 Profile Anatomy,,2022-09-29 19:01:50,,,,,,,G2 +326,Sarah McDonald,smcdonald@diligent.com,smcdonald@diligent.com,Review Tracking & Brand Building,,2022-09-29 19:01:50,,,,,,,G2 +327,Sarah McDonald,smcdonald@diligent.com,smcdonald@diligent.com,Profile Performance & Lead Management,,2022-09-29 19:01:50,,,,,,,G2 +328,Drew Rosenfeld,drosenfeld@criticalmention.com,drosenfeld@criticalmention.com,G2 Profile Anatomy,,2022-09-29 19:01:12,,,,,,,G2 +329,Drew Rosenfeld,drosenfeld@criticalmention.com,drosenfeld@criticalmention.com,Review Tracking & Brand Building,,2022-09-29 19:01:12,,,,,,,G2 +330,Drew Rosenfeld,drosenfeld@criticalmention.com,drosenfeld@criticalmention.com,The Review Rundown,,2022-09-29 19:01:12,,,,,,,G2 +331,Drew Rosenfeld,drosenfeld@criticalmention.com,drosenfeld@criticalmention.com,Profile Performance & Lead Management,,2022-09-29 19:01:12,,,,,,,G2 +332,Daniel Viana,daniel.viana@uberflip.com,daniel.viana@uberflip.com,Profile Performance & Lead Management,,2022-09-29 18:54:22,,,,,,,G2 +333,Daniel Viana,daniel.viana@uberflip.com,daniel.viana@uberflip.com,The Review Rundown,LIVE,2022-09-29 18:54:22,2022-11-08 21:55:33,,1,0%,,,G2 +334,Daniel Viana,daniel.viana@uberflip.com,daniel.viana@uberflip.com,Review Tracking & Brand Building,,2022-09-29 18:54:22,,,,,,,G2 +335,Daniel Viana,daniel.viana@uberflip.com,daniel.viana@uberflip.com,G2 Profile Anatomy,20,2022-09-29 18:54:22,2022-11-02 20:01:33,2022-11-03 14:08:26,1,100%,Adding CTA/Free Trial Buttons,2022-11-03 14:08:26,G2 +336,Jenny Allen,jenny.allen@coro.net,jenny.allen@coro.net,G2 Profile Anatomy,,2022-09-29 18:46:01,,,,,,,G2 +337,Jenny Allen,jenny.allen@coro.net,jenny.allen@coro.net,Profile Performance & Lead Management,,2022-09-29 18:46:01,,,,,,,G2 +338,Jenny Allen,jenny.allen@coro.net,jenny.allen@coro.net,The Review Rundown,,2022-09-29 18:46:01,,,,,,,G2 +339,Jenny Allen,jenny.allen@coro.net,jenny.allen@coro.net,Review Tracking & Brand Building,,2022-09-29 18:46:01,,,,,,,G2 +340,David Vero,dvero@successfinder.com,dvero@successfinder.com,How to Respond to Reviews,LIVE,2022-09-29 18:29:44,2022-09-29 18:29:44,2022-09-29 18:45:15,1,100%,Unactionable Negative Reviews,2022-09-29 18:45:15,G2 +341,Kevin Rollinson,kevin.rollinson@pendo.io,kevin.rollinson@pendo.io,Profile Performance & Lead Management,,2022-09-29 18:26:31,,,,,,,G2 +342,Kevin Rollinson,kevin.rollinson@pendo.io,kevin.rollinson@pendo.io,The Review Rundown,,2022-09-29 18:26:31,,,,,,,G2 +343,Kevin Rollinson,kevin.rollinson@pendo.io,kevin.rollinson@pendo.io,G2 Profile Anatomy,20,2022-09-29 18:26:31,2022-10-05 20:49:16,,1,50%,G2 Provided Content,2022-10-05 20:52:11,G2 +344,Kevin Rollinson,kevin.rollinson@pendo.io,kevin.rollinson@pendo.io,Review Tracking & Brand Building,,2022-09-29 18:26:31,,,,,,,G2 +345,✔ Kamil Rejent,kamil@survicate.com,kamil@survicate.com,Buyer Intent Basics,LIVE,2022-09-29 18:25:54,2022-09-29 18:25:54,2022-09-29 18:30:30,1,100%,Integrations,2022-09-29 18:30:30,G2 +346,✔ Kamil Rejent,kamil@survicate.com,kamil@survicate.com,G2 Profile Anatomy,,2022-09-29 18:25:00,,,,,,,G2 +347,✔ Kamil Rejent,kamil@survicate.com,kamil@survicate.com,Profile Performance & Lead Management,,2022-09-29 18:25:00,,,,,,,G2 +348,✔ Kamil Rejent,kamil@survicate.com,kamil@survicate.com,Review Tracking & Brand Building,,2022-09-29 18:25:00,,,,,,,G2 +349,✔ Kamil Rejent,kamil@survicate.com,kamil@survicate.com,The Review Rundown,,2022-09-29 18:25:00,,,,,,,G2 +350,Julia Goodmann,juliagood19@gmail.com,juliagood19@gmail.com,Profile Performance & Lead Management,,2022-09-29 18:19:51,,,,,,,G2 +351,Julia Goodmann,juliagood19@gmail.com,juliagood19@gmail.com,G2 Profile Anatomy,,2022-09-29 18:19:51,,,,,,,G2 +352,Julia Goodmann,juliagood19@gmail.com,juliagood19@gmail.com,The Review Rundown,,2022-09-29 18:19:51,,,,,,,G2 +353,Julia Goodmann,juliagood19@gmail.com,juliagood19@gmail.com,Review Tracking & Brand Building,,2022-09-29 18:19:51,,,,,,,G2 +354,Mela Lozano,mlozano@netgate.com,mlozano@netgate.com,Profile Performance & Lead Management,,2022-09-29 18:18:02,,,,,,,G2 +355,Mela Lozano,mlozano@netgate.com,mlozano@netgate.com,Review Tracking & Brand Building,,2022-09-29 18:18:02,,,,,,,G2 +356,Mela Lozano,mlozano@netgate.com,mlozano@netgate.com,The Review Rundown,,2022-09-29 18:18:02,,,,,,,G2 +357,Mela Lozano,mlozano@netgate.com,mlozano@netgate.com,G2 Profile Anatomy,20,2022-09-29 18:18:02,2022-09-29 18:18:48,2022-09-29 19:58:02,1,100%,Top Tips Recap,2022-09-29 19:58:02,G2 +358,Garima Aneja,garima.aneja@grazitti.com,garima.aneja@grazitti.com,The Review Rundown,,2022-09-29 17:37:17,,,,,,,G2 +359,Garima Aneja,garima.aneja@grazitti.com,garima.aneja@grazitti.com,G2 Profile Anatomy,,2022-09-29 17:37:17,,,,,,,G2 +360,Garima Aneja,garima.aneja@grazitti.com,garima.aneja@grazitti.com,Profile Performance & Lead Management,,2022-09-29 17:37:17,,,,,,,G2 +361,Garima Aneja,garima.aneja@grazitti.com,garima.aneja@grazitti.com,Review Tracking & Brand Building,,2022-09-29 17:37:17,,,,,,,G2 +362,Mercedes Elizabeth Barbuti,ebarbuti@hotmail.co.uk,ebarbuti@hotmail.co.uk,The Review Rundown,,2022-09-29 17:18:53,,,,,,,G2 +363,Mercedes Elizabeth Barbuti,ebarbuti@hotmail.co.uk,ebarbuti@hotmail.co.uk,Profile Performance & Lead Management,,2022-09-29 17:18:53,,,,,,,G2 +364,Mercedes Elizabeth Barbuti,ebarbuti@hotmail.co.uk,ebarbuti@hotmail.co.uk,G2 Profile Anatomy,,2022-09-29 17:18:53,,,,,,,G2 +365,Mercedes Elizabeth Barbuti,ebarbuti@hotmail.co.uk,ebarbuti@hotmail.co.uk,Review Tracking & Brand Building,,2022-09-29 17:18:53,,,,,,,G2 +366,Joy Knowles,joy.knowles@agilitypr.com,joy.knowles@agilitypr.com,Review Tracking & Brand Building,,2022-09-29 16:51:13,,,,,,,G2 +367,Joy Knowles,joy.knowles@agilitypr.com,joy.knowles@agilitypr.com,Profile Performance & Lead Management,,2022-09-29 16:51:13,,,,,,,G2 +368,Joy Knowles,joy.knowles@agilitypr.com,joy.knowles@agilitypr.com,The Review Rundown,,2022-09-29 16:51:13,,,,,,,G2 +369,Joy Knowles,joy.knowles@agilitypr.com,joy.knowles@agilitypr.com,G2 Profile Anatomy,20,2022-09-29 16:51:13,2022-09-29 16:51:41,,1,0%,,,G2 +370,Joy Knowles,joy.knowles@agilitypr.com,joy.knowles@agilitypr.com,G2 Profile Anatomy,LIVE,2022-09-29 16:51:13,2022-11-08 17:01:06,,2,20%,Screenshots,2022-11-08 17:01:24,G2 +371,Janet Muto,jmuto@wevoconversion.com,jmuto@wevoconversion.com,Review Tracking & Brand Building,,2022-09-29 16:39:41,,,,,,,G2 +372,Janet Muto,jmuto@wevoconversion.com,jmuto@wevoconversion.com,G2 Profile Anatomy,,2022-09-29 16:39:41,,,,,,,G2 +373,Janet Muto,jmuto@wevoconversion.com,jmuto@wevoconversion.com,Profile Performance & Lead Management,,2022-09-29 16:39:41,,,,,,,G2 +374,Janet Muto,jmuto@wevoconversion.com,jmuto@wevoconversion.com,The Review Rundown,,2022-09-29 16:39:41,,,,,,,G2 +375,Daniel Gonzalez,daniel.gonzalez@trustmineral.com,daniel.gonzalez@trustmineral.com,The Review Rundown,,2022-09-29 16:35:30,,,,,,,G2 +376,Daniel Gonzalez,daniel.gonzalez@trustmineral.com,daniel.gonzalez@trustmineral.com,Profile Performance & Lead Management,,2022-09-29 16:35:30,,,,,,,G2 +377,Daniel Gonzalez,daniel.gonzalez@trustmineral.com,daniel.gonzalez@trustmineral.com,G2 Profile Anatomy,,2022-09-29 16:35:30,,,,,,,G2 +378,Daniel Gonzalez,daniel.gonzalez@trustmineral.com,daniel.gonzalez@trustmineral.com,Review Tracking & Brand Building,,2022-09-29 16:35:30,,,,,,,G2 +379,Sara Lane,sara.lane@screencloud.io,sara.lane@screencloud.io,The Review Rundown,,2022-09-29 16:24:50,,,,,,,G2 +380,Sara Lane,sara.lane@screencloud.io,sara.lane@screencloud.io,Review Tracking & Brand Building,,2022-09-29 16:24:50,,,,,,,G2 +381,Sara Lane,sara.lane@screencloud.io,sara.lane@screencloud.io,G2 Profile Anatomy,,2022-09-29 16:24:50,,,,,,,G2 +382,Sara Lane,sara.lane@screencloud.io,sara.lane@screencloud.io,Profile Performance & Lead Management,,2022-09-29 16:24:50,,,,,,,G2 +383,Darcy Hogendorn,darcy@rewatch.com,darcy@rewatch.com,How to Use Buyer Intent,LIVE,2022-09-29 16:05:44,2022-09-29 16:05:45,,1,0%,,,G2 +384,Darcy Hogendorn,darcy@rewatch.com,darcy@rewatch.com,Profile Performance & Lead Management,,2022-09-29 16:05:22,,,,,,,G2 +385,Darcy Hogendorn,darcy@rewatch.com,darcy@rewatch.com,G2 Profile Anatomy,20,2022-09-29 16:05:22,2022-09-29 16:09:44,,1,0%,,,G2 +386,Darcy Hogendorn,darcy@rewatch.com,darcy@rewatch.com,The Review Rundown,LIVE,2022-09-29 16:05:22,2022-09-29 17:12:13,,1,29%,Review Attribution Tags,2022-09-29 17:17:22,G2 +387,Darcy Hogendorn,darcy@rewatch.com,darcy@rewatch.com,Review Tracking & Brand Building,,2022-09-29 16:05:22,,,,,,,G2 +388,Amanda Bringewatt,amanda.bringewatt@leapsome.com,amanda.bringewatt@leapsome.com,Review Tracking & Brand Building,,2022-09-29 15:48:55,,,,,,,G2 +389,Amanda Bringewatt,amanda.bringewatt@leapsome.com,amanda.bringewatt@leapsome.com,G2 Profile Anatomy,,2022-09-29 15:48:55,,,,,,,G2 +390,Amanda Bringewatt,amanda.bringewatt@leapsome.com,amanda.bringewatt@leapsome.com,Profile Performance & Lead Management,,2022-09-29 15:48:55,,,,,,,G2 +391,Amanda Bringewatt,amanda.bringewatt@leapsome.com,amanda.bringewatt@leapsome.com,The Review Rundown,,2022-09-29 15:48:55,,,,,,,G2 +392,Lisa Britton Poppler,lisa.britton-poppler@opterus.com,lisa.britton-poppler@opterus.com,Profile Performance & Lead Management,,2022-09-29 15:39:51,,,,,,,G2 +393,Lisa Britton Poppler,lisa.britton-poppler@opterus.com,lisa.britton-poppler@opterus.com,The Review Rundown,,2022-09-29 15:39:51,,,,,,,G2 +394,Lisa Britton Poppler,lisa.britton-poppler@opterus.com,lisa.britton-poppler@opterus.com,G2 Profile Anatomy,20,2022-09-29 15:39:51,2022-09-29 18:49:01,,1,0%,,,G2 +395,Lisa Britton Poppler,lisa.britton-poppler@opterus.com,lisa.britton-poppler@opterus.com,Review Tracking & Brand Building,,2022-09-29 15:39:51,,,,,,,G2 +396,Simmi Girn,simmi.girn@gocollectiv.com,simmi.girn@gocollectiv.com,How to Respond to Reviews,LIVE,2022-09-29 15:37:13,2022-09-29 15:37:14,,1,8%,A Framework for Responding to Reviews,2022-09-29 15:37:32,G2 +397,Trent Holeman,tholeman@egnyte.com,tholeman@egnyte.com,Review Tracking & Brand Building,,2022-09-29 15:36:46,,,,,,,G2 +398,Trent Holeman,tholeman@egnyte.com,tholeman@egnyte.com,Profile Performance & Lead Management,,2022-09-29 15:36:46,,,,,,,G2 +399,Trent Holeman,tholeman@egnyte.com,tholeman@egnyte.com,The Review Rundown,,2022-09-29 15:36:46,,,,,,,G2 +400,Trent Holeman,tholeman@egnyte.com,tholeman@egnyte.com,G2 Profile Anatomy,20,2022-09-29 15:36:46,2022-09-29 15:42:22,,1,0%,,,G2 +401,Simmi Girn,simmi.girn@gocollectiv.com,simmi.girn@gocollectiv.com,G2 Profile Anatomy,,2022-09-29 15:36:37,,,,,,,G2 +402,Simmi Girn,simmi.girn@gocollectiv.com,simmi.girn@gocollectiv.com,Review Tracking & Brand Building,,2022-09-29 15:36:37,,,,,,,G2 +403,Simmi Girn,simmi.girn@gocollectiv.com,simmi.girn@gocollectiv.com,Profile Performance & Lead Management,,2022-09-29 15:36:37,,,,,,,G2 +404,Simmi Girn,simmi.girn@gocollectiv.com,simmi.girn@gocollectiv.com,The Review Rundown,,2022-09-29 15:36:37,,,,,,,G2 +405,Caroline Hoffman,caroline@proctorio.com,caroline@proctorio.com,G2 Profile Anatomy,,2022-09-29 15:34:03,,,,,,,G2 +406,Caroline Hoffman,caroline@proctorio.com,caroline@proctorio.com,Review Tracking & Brand Building,,2022-09-29 15:34:03,,,,,,,G2 +407,Caroline Hoffman,caroline@proctorio.com,caroline@proctorio.com,Profile Performance & Lead Management,,2022-09-29 15:34:03,,,,,,,G2 +408,Caroline Hoffman,caroline@proctorio.com,caroline@proctorio.com,The Review Rundown,,2022-09-29 15:34:03,,,,,,,G2 +409,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,How to Respond to Reviews,LIVE,2022-09-29 15:25:54,2022-09-29 15:25:55,,1,17%,Respond to Reviews: Who ,2022-09-29 15:52:48,G2 +410,Laura Minafo,laura.minafo@eclincher.com,laura.minafo@eclincher.com,Review Tracking & Brand Building,,2022-09-29 15:25:00,,,,,,,G2 +411,Laura Minafo,laura.minafo@eclincher.com,laura.minafo@eclincher.com,G2 Profile Anatomy,,2022-09-29 15:25:00,,,,,,,G2 +412,Laura Minafo,laura.minafo@eclincher.com,laura.minafo@eclincher.com,Profile Performance & Lead Management,,2022-09-29 15:25:00,,,,,,,G2 +413,Laura Minafo,laura.minafo@eclincher.com,laura.minafo@eclincher.com,The Review Rundown,,2022-09-29 15:25:00,,,,,,,G2 +414,Steve Henson,steve@hravatar.com,steve@hravatar.com,Review Tracking & Brand Building,,2022-09-29 15:13:20,,,,,,,G2 +415,Steve Henson,steve@hravatar.com,steve@hravatar.com,The Review Rundown,,2022-09-29 15:13:20,,,,,,,G2 +416,Steve Henson,steve@hravatar.com,steve@hravatar.com,Profile Performance & Lead Management,,2022-09-29 15:13:20,,,,,,,G2 +417,Steve Henson,steve@hravatar.com,steve@hravatar.com,G2 Profile Anatomy,20,2022-09-29 15:13:20,2022-09-29 15:15:07,,1,0%,,,G2 +418,Amy Illingworth,amy.illingworth@exclaimer.com,amy.illingworth@exclaimer.com,Review Tracking & Brand Building,,2022-09-29 15:00:54,,,,,,,G2 +419,Amy Illingworth,amy.illingworth@exclaimer.com,amy.illingworth@exclaimer.com,G2 Profile Anatomy,,2022-09-29 15:00:54,,,,,,,G2 +420,Amy Illingworth,amy.illingworth@exclaimer.com,amy.illingworth@exclaimer.com,Profile Performance & Lead Management,,2022-09-29 15:00:54,,,,,,,G2 +421,Amy Illingworth,amy.illingworth@exclaimer.com,amy.illingworth@exclaimer.com,The Review Rundown,,2022-09-29 15:00:54,,,,,,,G2 +422,Brianna Weaver,brianna.weaver@callrail.com,brianna.weaver@callrail.com,Profile Performance & Lead Management,,2022-09-29 14:57:00,,,,,,,G2 +423,Brianna Weaver,brianna.weaver@callrail.com,brianna.weaver@callrail.com,The Review Rundown,,2022-09-29 14:57:00,,,,,,,G2 +424,Brianna Weaver,brianna.weaver@callrail.com,brianna.weaver@callrail.com,Review Tracking & Brand Building,,2022-09-29 14:57:00,,,,,,,G2 +425,Brianna Weaver,brianna.weaver@callrail.com,brianna.weaver@callrail.com,G2 Profile Anatomy,,2022-09-29 14:57:00,,,,,,,G2 +426,Riddhisha Patil,rpatil@pdftron.com,rpatil@pdftron.com,The Review Rundown,LIVE,2022-09-29 14:52:06,2022-09-29 14:54:43,,1,0%,,,G2 +427,Riddhisha Patil,rpatil@pdftron.com,rpatil@pdftron.com,G2 Profile Anatomy,,2022-09-29 14:52:06,,,,,,,G2 +428,Riddhisha Patil,rpatil@pdftron.com,rpatil@pdftron.com,Review Tracking & Brand Building,,2022-09-29 14:52:06,,,,,,,G2 +429,Riddhisha Patil,rpatil@pdftron.com,rpatil@pdftron.com,Profile Performance & Lead Management,,2022-09-29 14:52:06,,,,,,,G2 +430,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,Buyer Intent Basics,LIVE,2022-09-29 14:50:25,2022-10-04 14:39:19,,2,83%,Notifications,2022-10-04 17:51:24,G2 +431,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,Buyer Intent Basics,LIVE,2022-09-29 14:50:25,2022-09-29 14:50:26,2022-09-30 20:28:16,1,100%,Integrations,2022-09-30 20:28:16,G2 +432, Adam Kasek,adam@thesalesfactory.co,adam@thesalesfactory.co,Profile Performance & Lead Management,,2022-09-29 14:49:48,,,,,,,G2 +433, Adam Kasek,adam@thesalesfactory.co,adam@thesalesfactory.co,Review Tracking & Brand Building,,2022-09-29 14:49:48,,,,,,,G2 +434, Adam Kasek,adam@thesalesfactory.co,adam@thesalesfactory.co,The Review Rundown,,2022-09-29 14:49:48,,,,,,,G2 +435, Adam Kasek,adam@thesalesfactory.co,adam@thesalesfactory.co,G2 Profile Anatomy,,2022-09-29 14:49:48,,,,,,,G2 +436,Courtney Nigro,courtney.nigro@mineraltree.com,courtney.nigro@mineraltree.com,Review Tracking & Brand Building,,2022-09-29 14:48:47,,,,,,,G2 +437,Courtney Nigro,courtney.nigro@mineraltree.com,courtney.nigro@mineraltree.com,Profile Performance & Lead Management,,2022-09-29 14:48:47,,,,,,,G2 +438,Courtney Nigro,courtney.nigro@mineraltree.com,courtney.nigro@mineraltree.com,G2 Profile Anatomy,LIVE,2022-09-29 14:48:47,2022-11-09 17:12:00,,2,10%,Seller Provided Content,2022-11-09 17:12:24,G2 +439,Courtney Nigro,courtney.nigro@mineraltree.com,courtney.nigro@mineraltree.com,The Review Rundown,,2022-09-29 14:48:47,,,,,,,G2 +440,Courtney Nigro,courtney.nigro@mineraltree.com,courtney.nigro@mineraltree.com,G2 Profile Anatomy,20,2022-09-29 14:48:47,2022-09-29 17:10:14,,1,0%,,,G2 +441,Anto Sarmiento,anto@trackingtime.co,anto@trackingtime.co,Profile Performance & Lead Management,,2022-09-29 14:36:41,,,,,,,G2 +442,Anto Sarmiento,anto@trackingtime.co,anto@trackingtime.co,Review Tracking & Brand Building,,2022-09-29 14:36:41,,,,,,,G2 +443,Anto Sarmiento,anto@trackingtime.co,anto@trackingtime.co,G2 Profile Anatomy,,2022-09-29 14:36:41,,,,,,,G2 +444,Anto Sarmiento,anto@trackingtime.co,anto@trackingtime.co,The Review Rundown,,2022-09-29 14:36:41,,,,,,,G2 +445,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,Profile Performance & Lead Management,LIVE,2022-09-29 14:29:33,2022-09-29 14:32:29,,1,0%,,,G2 +446,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,The Review Rundown,LIVE,2022-09-29 14:29:33,2022-09-29 14:32:43,,1,0%,,,G2 +447,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,Review Tracking & Brand Building,,2022-09-29 14:29:33,,,,,,,G2 +448,Belle Priosoetanto,belle.priosoetanto@meetingdecisions.com,belle.priosoetanto@meetingdecisions.com,G2 Profile Anatomy,,2022-09-29 14:29:33,,,,,,,G2 +449,Emma Davis,emma.davis@optimizely.com,emma.davis@optimizely.com,Profile Performance & Lead Management,,2022-09-29 14:23:21,,,,,,,G2 +450,Emma Davis,emma.davis@optimizely.com,emma.davis@optimizely.com,G2 Profile Anatomy,,2022-09-29 14:23:21,,,,,,,G2 +451,Emma Davis,emma.davis@optimizely.com,emma.davis@optimizely.com,Review Tracking & Brand Building,,2022-09-29 14:23:21,,,,,,,G2 +452,Emma Davis,emma.davis@optimizely.com,emma.davis@optimizely.com,The Review Rundown,,2022-09-29 14:23:21,,,,,,,G2 +453,Andy Wamstad,andy.wamstad@contentstack.com,andy.wamstad@contentstack.com,Profile Performance & Lead Management,,2022-09-29 14:14:42,,,,,,,G2 +454,Andy Wamstad,andy.wamstad@contentstack.com,andy.wamstad@contentstack.com,Review Tracking & Brand Building,,2022-09-29 14:14:42,,,,,,,G2 +455,Andy Wamstad,andy.wamstad@contentstack.com,andy.wamstad@contentstack.com,The Review Rundown,,2022-09-29 14:14:42,,,,,,,G2 +456,Andy Wamstad,andy.wamstad@contentstack.com,andy.wamstad@contentstack.com,G2 Profile Anatomy,,2022-09-29 14:14:42,,,,,,,G2 +457,Susan Stone,susan.stone@sysdig.com,susan.stone@sysdig.com,Profile Performance & Lead Management,,2022-09-29 14:12:38,,,,,,,G2 +458,Susan Stone,susan.stone@sysdig.com,susan.stone@sysdig.com,The Review Rundown,,2022-09-29 14:12:38,,,,,,,G2 +459,Susan Stone,susan.stone@sysdig.com,susan.stone@sysdig.com,Review Tracking & Brand Building,,2022-09-29 14:12:38,,,,,,,G2 +460,Susan Stone,susan.stone@sysdig.com,susan.stone@sysdig.com,G2 Profile Anatomy,,2022-09-29 14:12:38,,,,,,,G2 +461,Keven Farnworth,keven@bl.ink,keven@bl.ink,The Review Rundown,LIVE,2022-09-29 14:12:04,2022-11-10 18:26:37,2022-11-10 18:40:57,1,100%,Review Moderation,2022-11-10 18:40:58,G2 +462,Keven Farnworth,keven@bl.ink,keven@bl.ink,Review Tracking & Brand Building,,2022-09-29 14:12:04,,,,,,,G2 +463,Keven Farnworth,keven@bl.ink,keven@bl.ink,G2 Profile Anatomy,20,2022-09-29 14:12:04,2022-11-04 16:59:59,2022-11-04 17:06:07,1,100%,Top Tips Recap,2022-11-04 17:06:07,G2 +464,Keven Farnworth,keven@bl.ink,keven@bl.ink,Profile Performance & Lead Management,,2022-09-29 14:12:04,,,,,,,G2 +465,Makayla Adams,makayla.adams@dotcms.com,makayla.adams@dotcms.com,The Review Rundown,,2022-09-29 14:11:19,,,,,,,G2 +466,Makayla Adams,makayla.adams@dotcms.com,makayla.adams@dotcms.com,G2 Profile Anatomy,,2022-09-29 14:11:19,,,,,,,G2 +467,Makayla Adams,makayla.adams@dotcms.com,makayla.adams@dotcms.com,Profile Performance & Lead Management,,2022-09-29 14:11:19,,,,,,,G2 +468,Makayla Adams,makayla.adams@dotcms.com,makayla.adams@dotcms.com,Review Tracking & Brand Building,,2022-09-29 14:11:19,,,,,,,G2 +469,Stefania Chiaramoni,stefania.chiaramoni@ingogroup.it,stefania.chiaramoni@ingogroup.it,Review Tracking & Brand Building,,2022-09-29 14:07:01,,,,,,,G2 +470,Stefania Chiaramoni,stefania.chiaramoni@ingogroup.it,stefania.chiaramoni@ingogroup.it,G2 Profile Anatomy,,2022-09-29 14:07:01,,,,,,,G2 +471,Stefania Chiaramoni,stefania.chiaramoni@ingogroup.it,stefania.chiaramoni@ingogroup.it,Profile Performance & Lead Management,,2022-09-29 14:07:01,,,,,,,G2 +472,Stefania Chiaramoni,stefania.chiaramoni@ingogroup.it,stefania.chiaramoni@ingogroup.it,The Review Rundown,,2022-09-29 14:07:01,,,,,,,G2 +473,David Geffen,david.geffen@glassboxdigital.com,david.geffen@glassboxdigital.com,The Review Rundown,,2022-09-29 14:06:08,,,,,,,G2 +474,David Geffen,david.geffen@glassboxdigital.com,david.geffen@glassboxdigital.com,Review Tracking & Brand Building,,2022-09-29 14:06:08,,,,,,,G2 +475,David Geffen,david.geffen@glassboxdigital.com,david.geffen@glassboxdigital.com,G2 Profile Anatomy,,2022-09-29 14:06:08,,,,,,,G2 +476,David Geffen,david.geffen@glassboxdigital.com,david.geffen@glassboxdigital.com,Profile Performance & Lead Management,,2022-09-29 14:06:08,,,,,,,G2 +477,Sara Vinell,sara.vinell@alvalabs.io,sara.vinell@alvalabs.io,Review Tracking & Brand Building,,2022-09-29 13:56:10,,,,,,,G2 +478,Sara Vinell,sara.vinell@alvalabs.io,sara.vinell@alvalabs.io,G2 Profile Anatomy,,2022-09-29 13:56:10,,,,,,,G2 +479,Sara Vinell,sara.vinell@alvalabs.io,sara.vinell@alvalabs.io,The Review Rundown,,2022-09-29 13:56:10,,,,,,,G2 +480,Sara Vinell,sara.vinell@alvalabs.io,sara.vinell@alvalabs.io,Profile Performance & Lead Management,,2022-09-29 13:56:10,,,,,,,G2 +481,Ken Inamori,ken.inamori@apparity.com,ken.inamori@apparity.com,Review Tracking & Brand Building,,2022-09-29 13:48:19,,,,,,,G2 +482,Ken Inamori,ken.inamori@apparity.com,ken.inamori@apparity.com,Profile Performance & Lead Management,,2022-09-29 13:48:19,,,,,,,G2 +483,Ken Inamori,ken.inamori@apparity.com,ken.inamori@apparity.com,G2 Profile Anatomy,,2022-09-29 13:48:19,,,,,,,G2 +484,Ken Inamori,ken.inamori@apparity.com,ken.inamori@apparity.com,The Review Rundown,,2022-09-29 13:48:19,,,,,,,G2 +485,Alyssa Vorhees,avorhees@paycor.com,avorhees@paycor.com,G2 Profile Anatomy,,2022-09-29 13:44:59,,,,,,,G2 +486,Alyssa Vorhees,avorhees@paycor.com,avorhees@paycor.com,Profile Performance & Lead Management,,2022-09-29 13:44:59,,,,,,,G2 +487,Alyssa Vorhees,avorhees@paycor.com,avorhees@paycor.com,The Review Rundown,,2022-09-29 13:44:59,,,,,,,G2 +488,Alyssa Vorhees,avorhees@paycor.com,avorhees@paycor.com,Review Tracking & Brand Building,,2022-09-29 13:44:59,,,,,,,G2 +489,Alex Naumov,alex.naumov@vidyard.com,alex.naumov@vidyard.com,Review Tracking & Brand Building,,2022-09-29 13:20:58,,,,,,,G2 +490,Alex Naumov,alex.naumov@vidyard.com,alex.naumov@vidyard.com,Profile Performance & Lead Management,,2022-09-29 13:20:58,,,,,,,G2 +491,Alex Naumov,alex.naumov@vidyard.com,alex.naumov@vidyard.com,G2 Profile Anatomy,,2022-09-29 13:20:58,,,,,,,G2 +492,Alex Naumov,alex.naumov@vidyard.com,alex.naumov@vidyard.com,The Review Rundown,,2022-09-29 13:20:58,,,,,,,G2 +493,Prathyusha Puvvada,prathyushapuvvada@targetg.in,prathyushapuvvada@targetg.in,G2 Profile Anatomy,20,2022-09-29 13:09:30,2022-11-02 09:44:59,,1,0%,,,G2 +494,Prathyusha Puvvada,prathyushapuvvada@targetg.in,prathyushapuvvada@targetg.in,Review Tracking & Brand Building,,2022-09-29 13:09:30,,,,,,,G2 +495,Prathyusha Puvvada,prathyushapuvvada@targetg.in,prathyushapuvvada@targetg.in,Profile Performance & Lead Management,,2022-09-29 13:09:30,,,,,,,G2 +496,Prathyusha Puvvada,prathyushapuvvada@targetg.in,prathyushapuvvada@targetg.in,The Review Rundown,,2022-09-29 13:09:30,,,,,,,G2 +497,Sabina Fox,sabina@survicate.com,sabina@survicate.com,Profile Performance & Lead Management,,2022-09-29 13:03:45,,,,,,,G2 +498,Sabina Fox,sabina@survicate.com,sabina@survicate.com,Review Tracking & Brand Building,,2022-09-29 13:03:45,,,,,,,G2 +499,Sabina Fox,sabina@survicate.com,sabina@survicate.com,The Review Rundown,,2022-09-29 13:03:45,,,,,,,G2 +500,Sabina Fox,sabina@survicate.com,sabina@survicate.com,G2 Profile Anatomy,,2022-09-29 13:03:45,,,,,,,G2 +501,Linda Zillen,linda@dbvis.com,linda@dbvis.com,Profile Performance & Lead Management,,2022-09-29 12:58:42,,,,,,,G2 +502,Linda Zillen,linda@dbvis.com,linda@dbvis.com,G2 Profile Anatomy,,2022-09-29 12:58:42,,,,,,,G2 +503,Linda Zillen,linda@dbvis.com,linda@dbvis.com,Review Tracking & Brand Building,,2022-09-29 12:58:42,,,,,,,G2 +504,Linda Zillen,linda@dbvis.com,linda@dbvis.com,The Review Rundown,,2022-09-29 12:58:42,,,,,,,G2 +505,Olivia Gracey,olivia.gracey@recruitee.com,olivia.gracey@recruitee.com,G2 Profile Anatomy,,2022-09-29 12:38:48,,,,,,,G2 +506,Olivia Gracey,olivia.gracey@recruitee.com,olivia.gracey@recruitee.com,The Review Rundown,,2022-09-29 12:38:48,,,,,,,G2 +507,Olivia Gracey,olivia.gracey@recruitee.com,olivia.gracey@recruitee.com,Review Tracking & Brand Building,,2022-09-29 12:38:48,,,,,,,G2 +508,Olivia Gracey,olivia.gracey@recruitee.com,olivia.gracey@recruitee.com,Profile Performance & Lead Management,LIVE,2022-09-29 12:38:48,2022-09-29 12:39:44,,1,0%,,,G2 +509,Kathleen Ryaboy,kryaboy@allego.com,kryaboy@allego.com,Profile Performance & Lead Management,,2022-09-29 12:26:31,,,,,,,G2 +510,Kathleen Ryaboy,kryaboy@allego.com,kryaboy@allego.com,G2 Profile Anatomy,,2022-09-29 12:26:31,,,,,,,G2 +511,Kathleen Ryaboy,kryaboy@allego.com,kryaboy@allego.com,The Review Rundown,,2022-09-29 12:26:31,,,,,,,G2 +512,Kathleen Ryaboy,kryaboy@allego.com,kryaboy@allego.com,Review Tracking & Brand Building,,2022-09-29 12:26:31,,,,,,,G2 +513,Shaylyn Tiano,stiano@workwave.com,stiano@workwave.com,Review Tracking & Brand Building,,2022-09-29 12:19:48,,,,,,,G2 +514,Shaylyn Tiano,stiano@workwave.com,stiano@workwave.com,G2 Profile Anatomy,20,2022-09-29 12:19:48,2022-09-29 12:20:24,2022-09-29 12:25:46,1,100%,Top Tips Recap,2022-09-29 12:25:46,G2 +515,Shaylyn Tiano,stiano@workwave.com,stiano@workwave.com,The Review Rundown,LIVE,2022-09-29 12:19:48,2022-09-29 12:25:58,2022-09-29 12:34:54,1,100%,Review Moderation,2022-09-29 12:34:54,G2 +516,Shaylyn Tiano,stiano@workwave.com,stiano@workwave.com,Profile Performance & Lead Management,,2022-09-29 12:19:48,,,,,,,G2 +517,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,Buyer Intent Basics,LIVE,2022-09-29 12:09:56,2022-09-29 12:09:57,,1,0%,,,G2 +518,Luigi's Box,marketing@luigisbox.com,marketing@luigisbox.com,How to Use Buyer Intent,LIVE,2022-09-29 11:50:30,2022-09-29 11:50:31,,1,0%,,,G2 +519,Zappyhire Marketing,marketing@zappyhire.com,marketing@zappyhire.com,How to Use Buyer Intent,LIVE,2022-09-29 11:36:28,2022-09-29 11:36:29,,1,0%,,,G2 +520,Zappyhire Marketing,marketing@zappyhire.com,marketing@zappyhire.com,Review Tracking & Brand Building,,2022-09-29 11:34:59,,,,,,,G2 +521,Zappyhire Marketing,marketing@zappyhire.com,marketing@zappyhire.com,Profile Performance & Lead Management,LIVE,2022-09-29 11:34:59,2022-09-29 11:36:05,,1,0%,,,G2 +522,Zappyhire Marketing,marketing@zappyhire.com,marketing@zappyhire.com,G2 Profile Anatomy,,2022-09-29 11:34:59,,,,,,,G2 +523,Zappyhire Marketing,marketing@zappyhire.com,marketing@zappyhire.com,The Review Rundown,LIVE,2022-09-29 11:34:59,2022-09-30 11:21:22,,1,43%,Intro/4 Pillars,2022-09-30 11:27:31,G2 +524,Srinivas Borra,srinivas.borra@kore.com,srinivas.borra@kore.com,Profile Performance & Lead Management,,2022-09-29 11:30:31,,,,,,,G2 +525,Srinivas Borra,srinivas.borra@kore.com,srinivas.borra@kore.com,Review Tracking & Brand Building,,2022-09-29 11:30:31,,,,,,,G2 +526,Srinivas Borra,srinivas.borra@kore.com,srinivas.borra@kore.com,G2 Profile Anatomy,,2022-09-29 11:30:31,,,,,,,G2 +527,Srinivas Borra,srinivas.borra@kore.com,srinivas.borra@kore.com,The Review Rundown,,2022-09-29 11:30:31,,,,,,,G2 +528,Anya Gonzales,anya.g@miro.com,anya.g@miro.com,Profile Performance & Lead Management,,2022-09-29 10:52:35,,,,,,,G2 +529,Anya Gonzales,anya.g@miro.com,anya.g@miro.com,G2 Profile Anatomy,,2022-09-29 10:52:35,,,,,,,G2 +530,Anya Gonzales,anya.g@miro.com,anya.g@miro.com,The Review Rundown,,2022-09-29 10:52:35,,,,,,,G2 +531,Anya Gonzales,anya.g@miro.com,anya.g@miro.com,Review Tracking & Brand Building,,2022-09-29 10:52:35,,,,,,,G2 +532,Purna Bhuyarkar,pbhuyarkar@g2.com,pbhuyarkar@g2.com,G2 Profile Anatomy,,2022-09-29 10:52:20,,,,,,,G2 +533,Purna Bhuyarkar,pbhuyarkar@g2.com,pbhuyarkar@g2.com,The Review Rundown,,2022-09-29 10:52:20,,,,,,,G2 +534,Purna Bhuyarkar,pbhuyarkar@g2.com,pbhuyarkar@g2.com,Review Tracking & Brand Building,,2022-09-29 10:52:20,,,,,,,G2 +535,Purna Bhuyarkar,pbhuyarkar@g2.com,pbhuyarkar@g2.com,Profile Performance & Lead Management,,2022-09-29 10:52:20,,,,,,,G2 +536,Luigi's Box,marketing@luigisbox.com,marketing@luigisbox.com,The Review Rundown,,2022-09-29 10:51:46,,,,,,,G2 +537,Luigi's Box,marketing@luigisbox.com,marketing@luigisbox.com,Review Tracking & Brand Building,LIVE,2022-09-29 10:51:46,2022-09-29 11:55:56,,1,0%,,,G2 +538,Luigi's Box,marketing@luigisbox.com,marketing@luigisbox.com,G2 Profile Anatomy,,2022-09-29 10:51:46,,,,,,,G2 +539,Luigi's Box,marketing@luigisbox.com,marketing@luigisbox.com,Profile Performance & Lead Management,,2022-09-29 10:51:46,,,,,,,G2 +540,Ido Shapira,ido@chattermill.io,ido@chattermill.io,Review Tracking & Brand Building,,2022-09-29 10:46:48,,,,,,,G2 +541,Ido Shapira,ido@chattermill.io,ido@chattermill.io,The Review Rundown,,2022-09-29 10:46:48,,,,,,,G2 +542,Ido Shapira,ido@chattermill.io,ido@chattermill.io,G2 Profile Anatomy,,2022-09-29 10:46:48,,,,,,,G2 +543,Ido Shapira,ido@chattermill.io,ido@chattermill.io,Profile Performance & Lead Management,,2022-09-29 10:46:48,,,,,,,G2 +544,Sreekumar J,sreekumar@greytip.com,sreekumar@greytip.com,Review Tracking & Brand Building,,2022-09-29 10:32:09,,,,,,,G2 +545,Sreekumar J,sreekumar@greytip.com,sreekumar@greytip.com,The Review Rundown,LIVE,2022-09-29 10:32:09,2022-09-29 10:32:41,2022-09-29 10:50:14,1,100%,Review Moderation,2022-09-29 10:50:14,G2 +546,Sreekumar J,sreekumar@greytip.com,sreekumar@greytip.com,Profile Performance & Lead Management,,2022-09-29 10:32:09,,,,,,,G2 +547,Sreekumar J,sreekumar@greytip.com,sreekumar@greytip.com,G2 Profile Anatomy,,2022-09-29 10:32:09,,,,,,,G2 +548,Luke Farrugia,luke.farrugia@screencloud.io,luke.farrugia@screencloud.io,The Review Rundown,,2022-09-29 10:29:08,,,,,,,G2 +549,Luke Farrugia,luke.farrugia@screencloud.io,luke.farrugia@screencloud.io,G2 Profile Anatomy,,2022-09-29 10:29:08,,,,,,,G2 +550,Luke Farrugia,luke.farrugia@screencloud.io,luke.farrugia@screencloud.io,Profile Performance & Lead Management,,2022-09-29 10:29:08,,,,,,,G2 +551,Luke Farrugia,luke.farrugia@screencloud.io,luke.farrugia@screencloud.io,Review Tracking & Brand Building,,2022-09-29 10:29:08,,,,,,,G2 +552,Muayad Al Kayyali,muayad.kayyali@ujet.cx,muayad.kayyali@ujet.cx,Review Tracking & Brand Building,,2022-09-29 10:09:17,,,,,,,G2 +553,Muayad Al Kayyali,muayad.kayyali@ujet.cx,muayad.kayyali@ujet.cx,Profile Performance & Lead Management,,2022-09-29 10:09:17,,,,,,,G2 +554,Muayad Al Kayyali,muayad.kayyali@ujet.cx,muayad.kayyali@ujet.cx,G2 Profile Anatomy,20,2022-09-29 10:09:17,2022-09-29 10:09:27,2022-09-29 10:41:17,1,100%,Top Tips Recap,2022-09-29 10:41:17,G2 +555,Muayad Al Kayyali,muayad.kayyali@ujet.cx,muayad.kayyali@ujet.cx,The Review Rundown,,2022-09-29 10:09:17,,,,,,,G2 +556,Sunny Gupta,sunny.gupta@vamsglobal.com,sunny.gupta@vamsglobal.com,The Review Rundown,,2022-09-29 09:59:50,,,,,,,G2 +557,Sunny Gupta,sunny.gupta@vamsglobal.com,sunny.gupta@vamsglobal.com,Review Tracking & Brand Building,,2022-09-29 09:59:50,,,,,,,G2 +558,Sunny Gupta,sunny.gupta@vamsglobal.com,sunny.gupta@vamsglobal.com,G2 Profile Anatomy,,2022-09-29 09:59:50,,,,,,,G2 +559,Sunny Gupta,sunny.gupta@vamsglobal.com,sunny.gupta@vamsglobal.com,Profile Performance & Lead Management,,2022-09-29 09:59:50,,,,,,,G2 +560,Ovidiu Mihai-Marginean,ovidiu.marginean@bannerflow.com,ovidiu.marginean@bannerflow.com,Review Tracking & Brand Building,,2022-09-29 09:54:55,,,,,,,G2 +561,Ovidiu Mihai-Marginean,ovidiu.marginean@bannerflow.com,ovidiu.marginean@bannerflow.com,G2 Profile Anatomy,,2022-09-29 09:54:55,,,,,,,G2 +562,Ovidiu Mihai-Marginean,ovidiu.marginean@bannerflow.com,ovidiu.marginean@bannerflow.com,Profile Performance & Lead Management,,2022-09-29 09:54:55,,,,,,,G2 +563,Ovidiu Mihai-Marginean,ovidiu.marginean@bannerflow.com,ovidiu.marginean@bannerflow.com,The Review Rundown,,2022-09-29 09:54:55,,,,,,,G2 +564,Ihor Zhabolenko,i.zhabolenko@influ2.com,i.zhabolenko@influ2.com,Buyer Intent Basics,LIVE,2022-09-29 09:53:30,2022-09-29 09:53:30,,1,0%,,,G2 +565,Ihor Zhabolenko,i.zhabolenko@influ2.com,i.zhabolenko@influ2.com,Review Tracking & Brand Building,,2022-09-29 09:51:57,,,,,,,G2 +566,Ihor Zhabolenko,i.zhabolenko@influ2.com,i.zhabolenko@influ2.com,Profile Performance & Lead Management,,2022-09-29 09:51:57,,,,,,,G2 +567,Ihor Zhabolenko,i.zhabolenko@influ2.com,i.zhabolenko@influ2.com,G2 Profile Anatomy,,2022-09-29 09:51:57,,,,,,,G2 +568,Ihor Zhabolenko,i.zhabolenko@influ2.com,i.zhabolenko@influ2.com,The Review Rundown,,2022-09-29 09:51:57,,,,,,,G2 +569,Sunil Kumar G,sunilkumar.ramana@freshworks.com,sunilkumar.ramana@freshworks.com,Buyer Intent Basics,LIVE,2022-09-29 09:38:27,2022-09-29 09:38:28,2022-11-02 10:13:23,1,100%,What is Buyer Intent and why is it beneficial?,2022-11-02 10:13:23,G2 +570,Sunil Kumar G,sunilkumar.ramana@freshworks.com,sunilkumar.ramana@freshworks.com,G2 Profile Anatomy,,2022-09-29 09:37:43,,,,,,,G2 +571,Sunil Kumar G,sunilkumar.ramana@freshworks.com,sunilkumar.ramana@freshworks.com,Review Tracking & Brand Building,,2022-09-29 09:37:43,,,,,,,G2 +572,Sunil Kumar G,sunilkumar.ramana@freshworks.com,sunilkumar.ramana@freshworks.com,The Review Rundown,,2022-09-29 09:37:43,,,,,,,G2 +573,Sunil Kumar G,sunilkumar.ramana@freshworks.com,sunilkumar.ramana@freshworks.com,Profile Performance & Lead Management,,2022-09-29 09:37:43,,,,,,,G2 +574,Willow Littlewood,willow.littlewood@teamwork.com,willow.littlewood@teamwork.com,Review Tracking & Brand Building,,2022-09-29 09:29:02,,,,,,,G2 +575,Willow Littlewood,willow.littlewood@teamwork.com,willow.littlewood@teamwork.com,G2 Profile Anatomy,,2022-09-29 09:29:02,,,,,,,G2 +576,Willow Littlewood,willow.littlewood@teamwork.com,willow.littlewood@teamwork.com,Profile Performance & Lead Management,,2022-09-29 09:29:02,,,,,,,G2 +577,Willow Littlewood,willow.littlewood@teamwork.com,willow.littlewood@teamwork.com,The Review Rundown,,2022-09-29 09:29:02,,,,,,,G2 +578,Katja Skafar,kskafar@stackoverflow.com,kskafar@stackoverflow.com,Preparing for G2 Reports,LIVE,2022-09-29 09:13:53,2022-09-29 09:13:54,2022-09-29 09:36:41,1,100%,Results Index Criteria,2022-09-29 09:36:41,G2 +579,Emily Neal,emilyn@dsmn8.com,emilyn@dsmn8.com,G2 Profile Anatomy,,2022-09-29 09:04:35,,,,,,,G2 +580,Emily Neal,emilyn@dsmn8.com,emilyn@dsmn8.com,Profile Performance & Lead Management,,2022-09-29 09:04:35,,,,,,,G2 +581,Emily Neal,emilyn@dsmn8.com,emilyn@dsmn8.com,Review Tracking & Brand Building,,2022-09-29 09:04:35,,,,,,,G2 +582,Emily Neal,emilyn@dsmn8.com,emilyn@dsmn8.com,The Review Rundown,,2022-09-29 09:04:35,,,,,,,G2 +583,Anna Saakyan,anna.saakyan@userlane.com,anna.saakyan@userlane.com,The Review Rundown,,2022-09-29 08:54:37,,,,,,,G2 +584,Anna Saakyan,anna.saakyan@userlane.com,anna.saakyan@userlane.com,Review Tracking & Brand Building,,2022-09-29 08:54:37,,,,,,,G2 +585,Anna Saakyan,anna.saakyan@userlane.com,anna.saakyan@userlane.com,Profile Performance & Lead Management,LIVE,2022-09-29 08:54:37,2022-09-29 08:55:11,,1,0%,,,G2 +586,Anna Saakyan,anna.saakyan@userlane.com,anna.saakyan@userlane.com,G2 Profile Anatomy,20,2022-09-29 08:54:37,2022-09-29 08:55:43,,1,0%,,,G2 +587,Marina Marochko,marina@precoro.com,marina@precoro.com,Profile Performance & Lead Management,,2022-09-29 08:53:19,,,,,,,G2 +588,Marina Marochko,marina@precoro.com,marina@precoro.com,Review Tracking & Brand Building,,2022-09-29 08:53:19,,,,,,,G2 +589,Marina Marochko,marina@precoro.com,marina@precoro.com,G2 Profile Anatomy,,2022-09-29 08:53:19,,,,,,,G2 +590,Marina Marochko,marina@precoro.com,marina@precoro.com,The Review Rundown,,2022-09-29 08:53:19,,,,,,,G2 +591,Michele Smaldino,michele.smaldino@emplifi.io,michele.smaldino@emplifi.io,The Review Rundown,LIVE,2022-09-29 08:50:35,2022-10-20 10:05:56,,1,71%,Additional Review Generation Strategies,2022-10-20 12:42:43,G2 +592,Michele Smaldino,michele.smaldino@emplifi.io,michele.smaldino@emplifi.io,Profile Performance & Lead Management,,2022-09-29 08:50:35,,,,,,,G2 +593,Michele Smaldino,michele.smaldino@emplifi.io,michele.smaldino@emplifi.io,Review Tracking & Brand Building,,2022-09-29 08:50:35,,,,,,,G2 +594,Michele Smaldino,michele.smaldino@emplifi.io,michele.smaldino@emplifi.io,G2 Profile Anatomy,,2022-09-29 08:50:35,,,,,,,G2 +595,Svetlana Savova,ssavova@vedamo.com,ssavova@vedamo.com,Review Tracking & Brand Building,,2022-09-29 08:48:51,,,,,,,G2 +596,Svetlana Savova,ssavova@vedamo.com,ssavova@vedamo.com,Profile Performance & Lead Management,,2022-09-29 08:48:51,,,,,,,G2 +597,Svetlana Savova,ssavova@vedamo.com,ssavova@vedamo.com,The Review Rundown,,2022-09-29 08:48:51,,,,,,,G2 +598,Svetlana Savova,ssavova@vedamo.com,ssavova@vedamo.com,G2 Profile Anatomy,,2022-09-29 08:48:51,,,,,,,G2 +599,Michelle Meleskie,michelle@draper.ai,michelle@draper.ai,Review Tracking & Brand Building,,2022-09-29 08:47:54,,,,,,,G2 +600,Michelle Meleskie,michelle@draper.ai,michelle@draper.ai,The Review Rundown,,2022-09-29 08:47:54,,,,,,,G2 +601,Michelle Meleskie,michelle@draper.ai,michelle@draper.ai,G2 Profile Anatomy,20,2022-09-29 08:47:54,2022-09-29 08:50:52,,1,17%,What is the Value of a G2 Profile?,2022-09-29 08:51:55,G2 +602,Michelle Meleskie,michelle@draper.ai,michelle@draper.ai,Profile Performance & Lead Management,,2022-09-29 08:47:54,,,,,,,G2 +603,Elise Doherty,elise.doherty@elucidat.com,elise.doherty@elucidat.com,G2 Profile Anatomy,,2022-09-29 08:43:39,,,,,,,G2 +604,Elise Doherty,elise.doherty@elucidat.com,elise.doherty@elucidat.com,Review Tracking & Brand Building,,2022-09-29 08:43:39,,,,,,,G2 +605,Elise Doherty,elise.doherty@elucidat.com,elise.doherty@elucidat.com,The Review Rundown,,2022-09-29 08:43:39,,,,,,,G2 +606,Elise Doherty,elise.doherty@elucidat.com,elise.doherty@elucidat.com,Profile Performance & Lead Management,,2022-09-29 08:43:39,,,,,,,G2 +607,Sahana Swamy,sswamy@g2.com,sswamy@g2.com,Profile Performance & Lead Management,,2022-09-29 08:34:51,,,,,,,G2 +608,Sahana Swamy,sswamy@g2.com,sswamy@g2.com,The Review Rundown,,2022-09-29 08:34:51,,,,,,,G2 +609,Sahana Swamy,sswamy@g2.com,sswamy@g2.com,G2 Profile Anatomy,LIVE,2022-09-29 08:34:51,2022-11-18 10:35:10,,1,0%,,,G2 +610,Sahana Swamy,sswamy@g2.com,sswamy@g2.com,Review Tracking & Brand Building,LIVE,2022-09-29 08:34:51,2022-11-18 10:35:54,,1,14%,Marketing Content: Widgets,2022-11-18 10:36:27,G2 +611,Ran Brook,ranb@paragone.ai,ranb@paragone.ai,How to Use Buyer Intent,LIVE,2022-09-29 08:34:12,2022-09-29 08:34:13,,1,0%,,,G2 +612,Ran Brook,ranb@paragone.ai,ranb@paragone.ai,Profile Performance & Lead Management,,2022-09-29 08:32:58,,,,,,,G2 +613,Ran Brook,ranb@paragone.ai,ranb@paragone.ai,The Review Rundown,,2022-09-29 08:32:58,,,,,,,G2 +614,Ran Brook,ranb@paragone.ai,ranb@paragone.ai,G2 Profile Anatomy,,2022-09-29 08:32:58,,,,,,,G2 +615,Ran Brook,ranb@paragone.ai,ranb@paragone.ai,Review Tracking & Brand Building,,2022-09-29 08:32:58,,,,,,,G2 +616,Melissa Favre-Lorraine,mlorraine@xtm-intl.com,mlorraine@xtm-intl.com,The Review Rundown,,2022-09-29 08:28:36,,,,,,,G2 +617,Melissa Favre-Lorraine,mlorraine@xtm-intl.com,mlorraine@xtm-intl.com,G2 Profile Anatomy,,2022-09-29 08:28:36,,,,,,,G2 +618,Melissa Favre-Lorraine,mlorraine@xtm-intl.com,mlorraine@xtm-intl.com,Review Tracking & Brand Building,,2022-09-29 08:28:36,,,,,,,G2 +619,Melissa Favre-Lorraine,mlorraine@xtm-intl.com,mlorraine@xtm-intl.com,Profile Performance & Lead Management,,2022-09-29 08:28:36,,,,,,,G2 +620,Puck Boekhout,puck@storyteq.com,puck@storyteq.com,The Review Rundown,,2022-09-29 08:27:47,,,,,,,G2 +621,Puck Boekhout,puck@storyteq.com,puck@storyteq.com,Profile Performance & Lead Management,,2022-09-29 08:27:47,,,,,,,G2 +622,Puck Boekhout,puck@storyteq.com,puck@storyteq.com,Review Tracking & Brand Building,,2022-09-29 08:27:47,,,,,,,G2 +623,Puck Boekhout,puck@storyteq.com,puck@storyteq.com,G2 Profile Anatomy,,2022-09-29 08:27:47,,,,,,,G2 +624,Marin Sabo,marin.sabo@optimoroute.com,marin.sabo@optimoroute.com,Profile Performance & Lead Management,LIVE,2022-09-29 08:23:39,2022-10-06 10:48:20,,1,0%,,,G2 +625,Marin Sabo,marin.sabo@optimoroute.com,marin.sabo@optimoroute.com,The Review Rundown,,2022-09-29 08:23:39,,,,,,,G2 +626,Marin Sabo,marin.sabo@optimoroute.com,marin.sabo@optimoroute.com,Review Tracking & Brand Building,,2022-09-29 08:23:39,,,,,,,G2 +627,Marin Sabo,marin.sabo@optimoroute.com,marin.sabo@optimoroute.com,G2 Profile Anatomy,20,2022-09-29 08:23:39,2022-10-06 10:02:55,2022-10-06 10:47:34,1,100%,Top Tips Recap,2022-10-06 10:47:34,G2 +628,Saivinai Cheithanya,saivinai@kissflow.com,saivinai@kissflow.com,Review Tracking & Brand Building,,2022-09-29 08:22:56,,,,,,,G2 +629,Saivinai Cheithanya,saivinai@kissflow.com,saivinai@kissflow.com,G2 Profile Anatomy,,2022-09-29 08:22:56,,,,,,,G2 +630,Saivinai Cheithanya,saivinai@kissflow.com,saivinai@kissflow.com,Profile Performance & Lead Management,,2022-09-29 08:22:56,,,,,,,G2 +631,Saivinai Cheithanya,saivinai@kissflow.com,saivinai@kissflow.com,The Review Rundown,,2022-09-29 08:22:56,,,,,,,G2 +632,Tom Schoorstra,tom.schoorstra@foleon.com,tom.schoorstra@foleon.com,The Review Rundown,,2022-09-29 08:20:55,,,,,,,G2 +633,Tom Schoorstra,tom.schoorstra@foleon.com,tom.schoorstra@foleon.com,Profile Performance & Lead Management,,2022-09-29 08:20:55,,,,,,,G2 +634,Tom Schoorstra,tom.schoorstra@foleon.com,tom.schoorstra@foleon.com,G2 Profile Anatomy,,2022-09-29 08:20:55,,,,,,,G2 +635,Tom Schoorstra,tom.schoorstra@foleon.com,tom.schoorstra@foleon.com,Review Tracking & Brand Building,,2022-09-29 08:20:55,,,,,,,G2 +636,Joachim Molin,joachim.molin@trintech.com,joachim.molin@trintech.com,The Review Rundown,,2022-09-29 08:20:28,,,,,,,G2 +637,Joachim Molin,joachim.molin@trintech.com,joachim.molin@trintech.com,Review Tracking & Brand Building,,2022-09-29 08:20:28,,,,,,,G2 +638,Joachim Molin,joachim.molin@trintech.com,joachim.molin@trintech.com,G2 Profile Anatomy,,2022-09-29 08:20:28,,,,,,,G2 +639,Joachim Molin,joachim.molin@trintech.com,joachim.molin@trintech.com,Profile Performance & Lead Management,,2022-09-29 08:20:28,,,,,,,G2 +640,Ben Savage,bsavage@g2.com,bsavage@g2.com,Review Tracking & Brand Building,,2022-09-29 08:18:17,,,,,,,G2 +641,Ben Savage,bsavage@g2.com,bsavage@g2.com,G2 Profile Anatomy,,2022-09-29 08:18:17,,,,,,,G2 +642,Ben Savage,bsavage@g2.com,bsavage@g2.com,The Review Rundown,,2022-09-29 08:18:17,,,,,,,G2 +643,Ben Savage,bsavage@g2.com,bsavage@g2.com,Profile Performance & Lead Management,,2022-09-29 08:18:17,,,,,,,G2 +644,Lara Pieterse,lara.pieterse@smartlook.com,lara.pieterse@smartlook.com,Profile Performance & Lead Management,,2022-09-29 08:15:24,,,,,,,G2 +645,Lara Pieterse,lara.pieterse@smartlook.com,lara.pieterse@smartlook.com,Review Tracking & Brand Building,,2022-09-29 08:15:24,,,,,,,G2 +646,Lara Pieterse,lara.pieterse@smartlook.com,lara.pieterse@smartlook.com,The Review Rundown,,2022-09-29 08:15:24,,,,,,,G2 +647,Lara Pieterse,lara.pieterse@smartlook.com,lara.pieterse@smartlook.com,G2 Profile Anatomy,,2022-09-29 08:15:24,,,,,,,G2 +648,Jarune Preiksaite,jarune.preiksaite@favro.com,jarune.preiksaite@favro.com,Profile Performance & Lead Management,,2022-09-29 08:11:00,,,,,,,G2 +649,Jarune Preiksaite,jarune.preiksaite@favro.com,jarune.preiksaite@favro.com,G2 Profile Anatomy,20,2022-09-29 08:11:00,2022-09-29 08:11:22,,1,0%,,,G2 +650,Jarune Preiksaite,jarune.preiksaite@favro.com,jarune.preiksaite@favro.com,The Review Rundown,,2022-09-29 08:11:00,,,,,,,G2 +651,Jarune Preiksaite,jarune.preiksaite@favro.com,jarune.preiksaite@favro.com,Review Tracking & Brand Building,,2022-09-29 08:11:00,,,,,,,G2 +652,Mila Savina,mila@precoro.com,mila@precoro.com,Profile Performance & Lead Management,,2022-09-29 08:10:15,,,,,,,G2 +653,Mila Savina,mila@precoro.com,mila@precoro.com,G2 Profile Anatomy,20,2022-09-29 08:10:15,2022-09-29 09:45:24,,1,0%,,,G2 +654,Mila Savina,mila@precoro.com,mila@precoro.com,Review Tracking & Brand Building,,2022-09-29 08:10:15,,,,,,,G2 +655,Mila Savina,mila@precoro.com,mila@precoro.com,The Review Rundown,,2022-09-29 08:10:15,,,,,,,G2 +656,Katja Skafar,kskafar@stackoverflow.com,kskafar@stackoverflow.com,Review Tracking & Brand Building,LIVE,2022-09-29 08:09:46,2022-09-29 08:48:12,2022-09-29 08:54:36,1,100%,Review Integrations,2022-09-29 08:54:36,G2 +657,Katja Skafar,kskafar@stackoverflow.com,kskafar@stackoverflow.com,The Review Rundown,LIVE,2022-09-29 08:09:46,2022-09-29 08:10:02,2022-09-29 08:47:59,1,100%,Review Moderation,2022-09-29 08:48:00,G2 +658,Katja Skafar,kskafar@stackoverflow.com,kskafar@stackoverflow.com,Profile Performance & Lead Management,,2022-09-29 08:09:46,,,,,,,G2 +659,Katja Skafar,kskafar@stackoverflow.com,kskafar@stackoverflow.com,G2 Profile Anatomy,,2022-09-29 08:09:46,,,,,,,G2 +660,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,How to Use Buyer Intent,LIVE,2022-09-29 08:08:20,2022-09-29 08:08:20,2022-09-29 08:53:58,1,100%,Buyer Intent Score Filter Recommendations,2022-09-29 08:53:58,G2 +661,Maria Liuzzo,maria.liuzzo@veeam.com,maria.liuzzo@veeam.com,The Review Rundown,,2022-09-29 08:07:39,,,,,,,G2 +662,Maria Liuzzo,maria.liuzzo@veeam.com,maria.liuzzo@veeam.com,Profile Performance & Lead Management,,2022-09-29 08:07:39,,,,,,,G2 +663,Maria Liuzzo,maria.liuzzo@veeam.com,maria.liuzzo@veeam.com,G2 Profile Anatomy,,2022-09-29 08:07:39,,,,,,,G2 +664,Maria Liuzzo,maria.liuzzo@veeam.com,maria.liuzzo@veeam.com,Review Tracking & Brand Building,,2022-09-29 08:07:39,,,,,,,G2 +665,Robyn McGinn,rmcginn@scorebuddyqa.com,rmcginn@scorebuddyqa.com,Review Tracking & Brand Building,,2022-09-29 08:07:21,,,,,,,G2 +666,Robyn McGinn,rmcginn@scorebuddyqa.com,rmcginn@scorebuddyqa.com,G2 Profile Anatomy,,2022-09-29 08:07:21,,,,,,,G2 +667,Robyn McGinn,rmcginn@scorebuddyqa.com,rmcginn@scorebuddyqa.com,Profile Performance & Lead Management,,2022-09-29 08:07:21,,,,,,,G2 +668,Robyn McGinn,rmcginn@scorebuddyqa.com,rmcginn@scorebuddyqa.com,The Review Rundown,,2022-09-29 08:07:21,,,,,,,G2 +669,Mehmet Durmus,mehmet.durmus@memsource.com,mehmet.durmus@memsource.com,Profile Performance & Lead Management,,2022-09-29 08:05:58,,,,,,,G2 +670,Mehmet Durmus,mehmet.durmus@memsource.com,mehmet.durmus@memsource.com,G2 Profile Anatomy,,2022-09-29 08:05:58,,,,,,,G2 +671,Mehmet Durmus,mehmet.durmus@memsource.com,mehmet.durmus@memsource.com,Review Tracking & Brand Building,,2022-09-29 08:05:58,,,,,,,G2 +672,Mehmet Durmus,mehmet.durmus@memsource.com,mehmet.durmus@memsource.com,The Review Rundown,,2022-09-29 08:05:58,,,,,,,G2 +673,Marianna Cherniuk,marianna.cherniuk@beanworks.com,marianna.cherniuk@beanworks.com,Profile Performance & Lead Management,,2022-09-29 08:05:34,,,,,,,G2 +674,Marianna Cherniuk,marianna.cherniuk@beanworks.com,marianna.cherniuk@beanworks.com,The Review Rundown,,2022-09-29 08:05:34,,,,,,,G2 +675,Marianna Cherniuk,marianna.cherniuk@beanworks.com,marianna.cherniuk@beanworks.com,G2 Profile Anatomy,,2022-09-29 08:05:34,,,,,,,G2 +676,Marianna Cherniuk,marianna.cherniuk@beanworks.com,marianna.cherniuk@beanworks.com,Review Tracking & Brand Building,,2022-09-29 08:05:34,,,,,,,G2 +677,Neeraj Sharma,neeraj.sharma@expeditecommerce.com,neeraj.sharma@expeditecommerce.com,G2 Profile Anatomy,,2022-09-29 08:05:11,,,,,,,G2 +678,Neeraj Sharma,neeraj.sharma@expeditecommerce.com,neeraj.sharma@expeditecommerce.com,The Review Rundown,,2022-09-29 08:05:11,,,,,,,G2 +679,Neeraj Sharma,neeraj.sharma@expeditecommerce.com,neeraj.sharma@expeditecommerce.com,Profile Performance & Lead Management,,2022-09-29 08:05:11,,,,,,,G2 +680,Neeraj Sharma,neeraj.sharma@expeditecommerce.com,neeraj.sharma@expeditecommerce.com,Review Tracking & Brand Building,,2022-09-29 08:05:11,,,,,,,G2 +681,Sophia Heybrock,soh@easytranslate.com,soh@easytranslate.com,The Review Rundown,,2022-09-29 08:03:45,,,,,,,G2 +682,Sophia Heybrock,soh@easytranslate.com,soh@easytranslate.com,Review Tracking & Brand Building,,2022-09-29 08:03:45,,,,,,,G2 +683,Sophia Heybrock,soh@easytranslate.com,soh@easytranslate.com,G2 Profile Anatomy,,2022-09-29 08:03:45,,,,,,,G2 +684,Sophia Heybrock,soh@easytranslate.com,soh@easytranslate.com,Profile Performance & Lead Management,,2022-09-29 08:03:45,,,,,,,G2 +685,Sophie Dodgson,sophie.dodgson@softco.com,sophie.dodgson@softco.com,Review Tracking & Brand Building,,2022-09-29 08:02:32,,,,,,,G2 +686,Sophie Dodgson,sophie.dodgson@softco.com,sophie.dodgson@softco.com,The Review Rundown,,2022-09-29 08:02:32,,,,,,,G2 +687,Sophie Dodgson,sophie.dodgson@softco.com,sophie.dodgson@softco.com,Profile Performance & Lead Management,,2022-09-29 08:02:32,,,,,,,G2 +688,Sophie Dodgson,sophie.dodgson@softco.com,sophie.dodgson@softco.com,G2 Profile Anatomy,20,2022-09-29 08:02:32,2022-09-29 08:02:45,,1,0%,,,G2 +689,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,Buyer Intent Basics,LIVE,2022-09-29 07:58:46,2022-09-29 07:58:51,2022-09-29 08:07:51,1,100%,Integrations,2022-09-29 08:07:51,G2 +690,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,Review Tracking & Brand Building,,2022-09-29 07:58:12,,,,,,,G2 +691,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,The Review Rundown,,2022-09-29 07:58:12,,,,,,,G2 +692,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,G2 Profile Anatomy,,2022-09-29 07:58:12,,,,,,,G2 +693,Kristina Schneider,kristina.schneider@userlane.com,kristina.schneider@userlane.com,Profile Performance & Lead Management,,2022-09-29 07:58:12,,,,,,,G2 +694,Krishna Goyal,krishna.goyal@wingify.com,krishna.goyal@wingify.com,The Review Rundown,,2022-09-29 07:54:56,,,,,,,G2 +695,Krishna Goyal,krishna.goyal@wingify.com,krishna.goyal@wingify.com,Review Tracking & Brand Building,,2022-09-29 07:54:56,,,,,,,G2 +696,Krishna Goyal,krishna.goyal@wingify.com,krishna.goyal@wingify.com,G2 Profile Anatomy,,2022-09-29 07:54:56,,,,,,,G2 +697,Krishna Goyal,krishna.goyal@wingify.com,krishna.goyal@wingify.com,Profile Performance & Lead Management,,2022-09-29 07:54:56,,,,,,,G2 +698,Baptiste Fleury,baptiste.fleury@playplay.com,baptiste.fleury@playplay.com,Profile Performance & Lead Management,,2022-09-29 07:48:45,,,,,,,G2 +699,Baptiste Fleury,baptiste.fleury@playplay.com,baptiste.fleury@playplay.com,Review Tracking & Brand Building,,2022-09-29 07:48:45,,,,,,,G2 +700,Baptiste Fleury,baptiste.fleury@playplay.com,baptiste.fleury@playplay.com,The Review Rundown,,2022-09-29 07:48:45,,,,,,,G2 +701,Baptiste Fleury,baptiste.fleury@playplay.com,baptiste.fleury@playplay.com,G2 Profile Anatomy,,2022-09-29 07:48:45,,,,,,,G2 +702,Narendrasiva N,narendrasiva@usemultiplier.com,narendrasiva@usemultiplier.com,G2 Profile Anatomy,20,2022-09-29 07:46:00,2022-09-29 07:46:41,,1,0%,,,G2 +703,Narendrasiva N,narendrasiva@usemultiplier.com,narendrasiva@usemultiplier.com,Review Tracking & Brand Building,,2022-09-29 07:46:00,,,,,,,G2 +704,Narendrasiva N,narendrasiva@usemultiplier.com,narendrasiva@usemultiplier.com,The Review Rundown,,2022-09-29 07:46:00,,,,,,,G2 +705,Narendrasiva N,narendrasiva@usemultiplier.com,narendrasiva@usemultiplier.com,Profile Performance & Lead Management,,2022-09-29 07:46:00,,,,,,,G2 +706,Leander Sodji,leander.sodji@synthesia.io,leander.sodji@synthesia.io,Review Tracking & Brand Building,,2022-09-29 07:34:23,,,,,,,G2 +707,Leander Sodji,leander.sodji@synthesia.io,leander.sodji@synthesia.io,The Review Rundown,LIVE,2022-09-29 07:34:23,2022-09-29 07:34:56,2022-09-29 08:00:50,1,100%,Review Moderation,2022-09-29 08:00:50,G2 +708,Leander Sodji,leander.sodji@synthesia.io,leander.sodji@synthesia.io,G2 Profile Anatomy,20,2022-09-29 07:34:23,2022-10-17 08:04:38,,1,17%,What is the Value of a G2 Profile?,2022-10-17 08:05:35,G2 +709,Leander Sodji,leander.sodji@synthesia.io,leander.sodji@synthesia.io,Profile Performance & Lead Management,,2022-09-29 07:34:23,,,,,,,G2 +710,Julie Quintard,julie.quintard@didomi.io,julie.quintard@didomi.io,The Review Rundown,,2022-09-29 07:28:47,,,,,,,G2 +711,Julie Quintard,julie.quintard@didomi.io,julie.quintard@didomi.io,Profile Performance & Lead Management,,2022-09-29 07:28:47,,,,,,,G2 +712,Julie Quintard,julie.quintard@didomi.io,julie.quintard@didomi.io,Review Tracking & Brand Building,,2022-09-29 07:28:47,,,,,,,G2 +713,Julie Quintard,julie.quintard@didomi.io,julie.quintard@didomi.io,G2 Profile Anatomy,20,2022-09-29 07:28:47,2022-09-29 07:29:17,,1,0%,,,G2 +714,Ashley Duncan,ashley@plytix.com,ashley@plytix.com,G2 Profile Anatomy,,2022-09-29 07:17:57,,,,,,,G2 +715,Ashley Duncan,ashley@plytix.com,ashley@plytix.com,Review Tracking & Brand Building,,2022-09-29 07:17:57,,,,,,,G2 +716,Ashley Duncan,ashley@plytix.com,ashley@plytix.com,The Review Rundown,,2022-09-29 07:17:57,,,,,,,G2 +717,Ashley Duncan,ashley@plytix.com,ashley@plytix.com,Profile Performance & Lead Management,,2022-09-29 07:17:57,,,,,,,G2 +718,Yoan Kostadinov,ydk@keepit.com,ydk@keepit.com,G2 Profile Anatomy,20,2022-09-29 07:15:17,2022-09-29 07:15:26,,1,0%,,,G2 +719,Yoan Kostadinov,ydk@keepit.com,ydk@keepit.com,Review Tracking & Brand Building,,2022-09-29 07:15:17,,,,,,,G2 +720,Yoan Kostadinov,ydk@keepit.com,ydk@keepit.com,The Review Rundown,,2022-09-29 07:15:17,,,,,,,G2 +721,Yoan Kostadinov,ydk@keepit.com,ydk@keepit.com,Profile Performance & Lead Management,,2022-09-29 07:15:17,,,,,,,G2 +722,Karan Singh,karan.singh@vamsglobal.com,karan.singh@vamsglobal.com,How to Respond to Reviews,LIVE,2022-09-29 07:14:14,2022-09-29 07:14:19,,1,0%,,,G2 +723,Federica Macri,federica.macri@lokalise.com,federica.macri@lokalise.com,Review Tracking & Brand Building,,2022-09-29 07:13:04,,,,,,,G2 +724,Federica Macri,federica.macri@lokalise.com,federica.macri@lokalise.com,Profile Performance & Lead Management,,2022-09-29 07:13:04,,,,,,,G2 +725,Federica Macri,federica.macri@lokalise.com,federica.macri@lokalise.com,G2 Profile Anatomy,,2022-09-29 07:13:04,,,,,,,G2 +726,Federica Macri,federica.macri@lokalise.com,federica.macri@lokalise.com,The Review Rundown,,2022-09-29 07:13:04,,,,,,,G2 +727,Natasha Vasileva,natasha.vasileva@anecdotes.ai,natasha.vasileva@anecdotes.ai,Buyer Intent Basics,LIVE,2022-09-29 07:11:56,2022-09-29 07:11:56,,1,0%,,,G2 +728,Natasha Vasileva,natasha.vasileva@anecdotes.ai,natasha.vasileva@anecdotes.ai,The Review Rundown,,2022-09-29 07:11:19,,,,,,,G2 +729,Natasha Vasileva,natasha.vasileva@anecdotes.ai,natasha.vasileva@anecdotes.ai,Review Tracking & Brand Building,,2022-09-29 07:11:19,,,,,,,G2 +730,Natasha Vasileva,natasha.vasileva@anecdotes.ai,natasha.vasileva@anecdotes.ai,G2 Profile Anatomy,,2022-09-29 07:11:19,,,,,,,G2 +731,Natasha Vasileva,natasha.vasileva@anecdotes.ai,natasha.vasileva@anecdotes.ai,Profile Performance & Lead Management,,2022-09-29 07:11:19,,,,,,,G2 +732,Nir Geninson,nir@reblaze.com,nir@reblaze.com,Review Tracking & Brand Building,,2022-09-29 07:09:45,,,,,,,G2 +733,Nir Geninson,nir@reblaze.com,nir@reblaze.com,G2 Profile Anatomy,,2022-09-29 07:09:45,,,,,,,G2 +734,Nir Geninson,nir@reblaze.com,nir@reblaze.com,The Review Rundown,,2022-09-29 07:09:45,,,,,,,G2 +735,Nir Geninson,nir@reblaze.com,nir@reblaze.com,Profile Performance & Lead Management,,2022-09-29 07:09:45,,,,,,,G2 +736,Bruno Lyard,bruno.lyard@saleslayer.com,bruno.lyard@saleslayer.com,Profile Performance & Lead Management,,2022-09-29 07:01:13,,,,,,,G2 +737,Bruno Lyard,bruno.lyard@saleslayer.com,bruno.lyard@saleslayer.com,The Review Rundown,,2022-09-29 07:01:13,,,,,,,G2 +738,Bruno Lyard,bruno.lyard@saleslayer.com,bruno.lyard@saleslayer.com,Review Tracking & Brand Building,,2022-09-29 07:01:13,,,,,,,G2 +739,Bruno Lyard,bruno.lyard@saleslayer.com,bruno.lyard@saleslayer.com,G2 Profile Anatomy,,2022-09-29 07:01:13,,,,,,,G2 +740,Taylor Hollingsworth,t.hollingsworth@speexx.com,t.hollingsworth@speexx.com,The Review Rundown,,2022-09-29 06:58:47,,,,,,,G2 +741,Taylor Hollingsworth,t.hollingsworth@speexx.com,t.hollingsworth@speexx.com,Review Tracking & Brand Building,,2022-09-29 06:58:47,,,,,,,G2 +742,Taylor Hollingsworth,t.hollingsworth@speexx.com,t.hollingsworth@speexx.com,Profile Performance & Lead Management,,2022-09-29 06:58:47,,,,,,,G2 +743,Taylor Hollingsworth,t.hollingsworth@speexx.com,t.hollingsworth@speexx.com,G2 Profile Anatomy,,2022-09-29 06:58:47,,,,,,,G2 +744,Tatiana Obeid,tatiana.obeid@jobdiva.com,tatiana.obeid@jobdiva.com,The Review Rundown,,2022-09-29 06:58:23,,,,,,,G2 +745,Tatiana Obeid,tatiana.obeid@jobdiva.com,tatiana.obeid@jobdiva.com,Review Tracking & Brand Building,,2022-09-29 06:58:23,,,,,,,G2 +746,Tatiana Obeid,tatiana.obeid@jobdiva.com,tatiana.obeid@jobdiva.com,G2 Profile Anatomy,20,2022-09-29 06:58:23,2022-09-29 08:42:01,,1,0%,,,G2 +747,Tatiana Obeid,tatiana.obeid@jobdiva.com,tatiana.obeid@jobdiva.com,Profile Performance & Lead Management,,2022-09-29 06:58:23,,,,,,,G2 +748,David Krutonog,davidk@the-juno.com,davidk@the-juno.com,The Review Rundown,LIVE,2022-09-29 06:57:37,2022-09-29 06:58:27,,1,0%,,,G2 +749,David Krutonog,davidk@the-juno.com,davidk@the-juno.com,Profile Performance & Lead Management,,2022-09-29 06:57:37,,,,,,,G2 +750,David Krutonog,davidk@the-juno.com,davidk@the-juno.com,Review Tracking & Brand Building,LIVE,2022-09-29 06:57:37,2022-09-29 06:58:09,,1,0%,,,G2 +751,David Krutonog,davidk@the-juno.com,davidk@the-juno.com,G2 Profile Anatomy,20,2022-09-29 06:57:37,2022-09-29 06:58:31,,1,0%,,,G2 +752,Frederik R. Pedersen,frp@easytranslate.com,frp@easytranslate.com,Profile Performance & Lead Management,,2022-09-29 06:52:04,,,,,,,G2 +753,Frederik R. Pedersen,frp@easytranslate.com,frp@easytranslate.com,G2 Profile Anatomy,,2022-09-29 06:52:04,,,,,,,G2 +754,Frederik R. Pedersen,frp@easytranslate.com,frp@easytranslate.com,The Review Rundown,,2022-09-29 06:52:04,,,,,,,G2 +755,Frederik R. Pedersen,frp@easytranslate.com,frp@easytranslate.com,Review Tracking & Brand Building,,2022-09-29 06:52:04,,,,,,,G2 +756,Volodymyr Znizhko,volodymyr.znizhko@starwind.com,volodymyr.znizhko@starwind.com,Review Tracking & Brand Building,,2022-09-29 06:51:22,,,,,,,G2 +757,Volodymyr Znizhko,volodymyr.znizhko@starwind.com,volodymyr.znizhko@starwind.com,The Review Rundown,,2022-09-29 06:51:22,,,,,,,G2 +758,Volodymyr Znizhko,volodymyr.znizhko@starwind.com,volodymyr.znizhko@starwind.com,Profile Performance & Lead Management,,2022-09-29 06:51:22,,,,,,,G2 +759,Volodymyr Znizhko,volodymyr.znizhko@starwind.com,volodymyr.znizhko@starwind.com,G2 Profile Anatomy,,2022-09-29 06:51:22,,,,,,,G2 +760,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,Profile Performance & Lead Management,LIVE,2022-09-29 06:47:15,2022-10-27 14:42:41,,1,25%,Getting to Know the my.G2 Homepage,2022-10-27 14:44:07,G2 +761,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,G2 Profile Anatomy,20,2022-09-29 06:47:15,2022-09-29 06:47:26,,1,0%,,,G2 +762,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,Review Tracking & Brand Building,,2022-09-29 06:47:15,,,,,,,G2 +763,Simeon Atkins,simeon.atkins@mention-me.com,simeon.atkins@mention-me.com,The Review Rundown,LIVE,2022-09-29 06:47:15,2022-10-27 14:31:46,2022-10-27 14:37:47,1,100%,Review Moderation,2022-10-27 14:37:48,G2 +764,KP Akash,akash@helpshift.com,akash@helpshift.com,Review Tracking & Brand Building,,2022-09-29 06:45:31,,,,,,,G2 +765,KP Akash,akash@helpshift.com,akash@helpshift.com,The Review Rundown,,2022-09-29 06:45:31,,,,,,,G2 +766,KP Akash,akash@helpshift.com,akash@helpshift.com,Profile Performance & Lead Management,,2022-09-29 06:45:31,,,,,,,G2 +767,KP Akash,akash@helpshift.com,akash@helpshift.com,G2 Profile Anatomy,,2022-09-29 06:45:31,,,,,,,G2 +768,Kutay Yalçınkaya,kutay@appsamurai.com,kutay@appsamurai.com,Profile Performance & Lead Management,,2022-09-29 06:44:31,,,,,,,G2 +769,Kutay Yalçınkaya,kutay@appsamurai.com,kutay@appsamurai.com,G2 Profile Anatomy,,2022-09-29 06:44:31,,,,,,,G2 +770,Kutay Yalçınkaya,kutay@appsamurai.com,kutay@appsamurai.com,Review Tracking & Brand Building,,2022-09-29 06:44:31,,,,,,,G2 +771,Kutay Yalçınkaya,kutay@appsamurai.com,kutay@appsamurai.com,The Review Rundown,,2022-09-29 06:44:31,,,,,,,G2 +772,Ipshita Bhat,ipshita.bhat@highradius.com,ipshita.bhat@highradius.com,What is the G2 Content Subscription?,LIVE,2022-09-29 06:43:39,2022-09-29 06:43:40,,1,33%,Grid Reports,2022-09-29 07:16:50,G2 +773,Tereza Blechová,tereza.blechova@smartlook.com,tereza.blechova@smartlook.com,G2 Profile Anatomy,,2022-09-29 06:40:54,,,,,,,G2 +774,Tereza Blechová,tereza.blechova@smartlook.com,tereza.blechova@smartlook.com,Review Tracking & Brand Building,,2022-09-29 06:40:54,,,,,,,G2 +775,Tereza Blechová,tereza.blechova@smartlook.com,tereza.blechova@smartlook.com,The Review Rundown,,2022-09-29 06:40:54,,,,,,,G2 +776,Tereza Blechová,tereza.blechova@smartlook.com,tereza.blechova@smartlook.com,Profile Performance & Lead Management,,2022-09-29 06:40:54,,,,,,,G2 +777,Ipshita Bhat,ipshita.bhat@highradius.com,ipshita.bhat@highradius.com,The Review Rundown,,2022-09-29 06:39:56,,,,,,,G2 +778,Ipshita Bhat,ipshita.bhat@highradius.com,ipshita.bhat@highradius.com,G2 Profile Anatomy,,2022-09-29 06:39:56,,,,,,,G2 +779,Ipshita Bhat,ipshita.bhat@highradius.com,ipshita.bhat@highradius.com,Review Tracking & Brand Building,,2022-09-29 06:39:56,,,,,,,G2 +780,Ipshita Bhat,ipshita.bhat@highradius.com,ipshita.bhat@highradius.com,Profile Performance & Lead Management,,2022-09-29 06:39:56,,,,,,,G2 +781,Tatiana Mihalyova,tatiana.mihalyova@eset.com,tatiana.mihalyova@eset.com,The Review Rundown,,2022-09-29 06:36:25,,,,,,,G2 +782,Tatiana Mihalyova,tatiana.mihalyova@eset.com,tatiana.mihalyova@eset.com,Review Tracking & Brand Building,,2022-09-29 06:36:25,,,,,,,G2 +783,Tatiana Mihalyova,tatiana.mihalyova@eset.com,tatiana.mihalyova@eset.com,Profile Performance & Lead Management,LIVE,2022-09-29 06:36:25,2022-09-29 06:53:45,,1,38%,Profile Activity Page Overview,2022-09-29 06:57:44,G2 +784,Tatiana Mihalyova,tatiana.mihalyova@eset.com,tatiana.mihalyova@eset.com,G2 Profile Anatomy,20,2022-09-29 06:36:25,2022-09-29 06:36:37,2022-09-29 06:53:16,1,100%,Top Tips Recap,2022-09-29 06:53:17,G2 +785,Tomar van Dijk,tomar@getmarvia.com,tomar@getmarvia.com,Review Tracking & Brand Building,,2022-09-29 06:32:43,,,,,,,G2 +786,Tomar van Dijk,tomar@getmarvia.com,tomar@getmarvia.com,G2 Profile Anatomy,,2022-09-29 06:32:43,,,,,,,G2 +787,Tomar van Dijk,tomar@getmarvia.com,tomar@getmarvia.com,The Review Rundown,,2022-09-29 06:32:43,,,,,,,G2 +788,Tomar van Dijk,tomar@getmarvia.com,tomar@getmarvia.com,Profile Performance & Lead Management,,2022-09-29 06:32:43,,,,,,,G2 +789,Ceren Yuksel,ceren.yuksel@compport.com,ceren.yuksel@compport.com,Review Tracking & Brand Building,LIVE,2022-09-29 06:30:01,2022-10-28 09:13:09,2022-10-28 09:14:58,1,100%,Review Integrations,2022-10-28 09:14:59,G2 +790,Ceren Yuksel,ceren.yuksel@compport.com,ceren.yuksel@compport.com,G2 Profile Anatomy,20,2022-09-29 06:30:01,2022-10-12 11:05:23,2022-10-19 11:31:13,1,100%,Top Tips Recap,2022-10-19 11:31:13,G2 +791,Ceren Yuksel,ceren.yuksel@compport.com,ceren.yuksel@compport.com,Profile Performance & Lead Management,LIVE,2022-09-29 06:30:01,2022-10-13 14:01:49,2022-10-28 09:21:47,1,100%,Measuring Profile Performance,2022-10-28 09:21:47,G2 +792,Ceren Yuksel,ceren.yuksel@compport.com,ceren.yuksel@compport.com,The Review Rundown,LIVE,2022-09-29 06:30:01,2022-10-28 09:07:06,2022-10-28 09:12:51,1,100%,Review Moderation,2022-10-28 09:12:51,G2 +793,Niels Laursen,ncl@umbraco.com,ncl@umbraco.com,Review Tracking & Brand Building,,2022-09-29 06:29:42,,,,,,,G2 +794,Niels Laursen,ncl@umbraco.com,ncl@umbraco.com,Profile Performance & Lead Management,,2022-09-29 06:29:42,,,,,,,G2 +795,Niels Laursen,ncl@umbraco.com,ncl@umbraco.com,The Review Rundown,,2022-09-29 06:29:42,,,,,,,G2 +796,Niels Laursen,ncl@umbraco.com,ncl@umbraco.com,G2 Profile Anatomy,,2022-09-29 06:29:42,,,,,,,G2 +797,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,Profile Performance & Lead Management,,2022-09-29 06:29:34,,,,,,,G2 +798,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,G2 Profile Anatomy,,2022-09-29 06:29:34,,,,,,,G2 +799,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,Review Tracking & Brand Building,,2022-09-29 06:29:34,,,,,,,G2 +800,Shihan Condagamage,shihan@wso2.com,shihan@wso2.com,The Review Rundown,,2022-09-29 06:29:34,,,,,,,G2 +801,Anna Gosheva,agosheva@vedamo.com,agosheva@vedamo.com,Review Tracking & Brand Building,,2022-09-29 06:27:15,,,,,,,G2 +802,Anna Gosheva,agosheva@vedamo.com,agosheva@vedamo.com,The Review Rundown,,2022-09-29 06:27:15,,,,,,,G2 +803,Anna Gosheva,agosheva@vedamo.com,agosheva@vedamo.com,G2 Profile Anatomy,,2022-09-29 06:27:15,,,,,,,G2 +804,Anna Gosheva,agosheva@vedamo.com,agosheva@vedamo.com,Profile Performance & Lead Management,,2022-09-29 06:27:15,,,,,,,G2 +805,Agathe Glatz,agathe.glatz@ninox.com,agathe.glatz@ninox.com,The Review Rundown,,2022-09-29 06:24:40,,,,,,,G2 +806,Agathe Glatz,agathe.glatz@ninox.com,agathe.glatz@ninox.com,Profile Performance & Lead Management,,2022-09-29 06:24:40,,,,,,,G2 +807,Agathe Glatz,agathe.glatz@ninox.com,agathe.glatz@ninox.com,G2 Profile Anatomy,,2022-09-29 06:24:40,,,,,,,G2 +808,Agathe Glatz,agathe.glatz@ninox.com,agathe.glatz@ninox.com,Review Tracking & Brand Building,,2022-09-29 06:24:40,,,,,,,G2 +809,Andrej Hyben,ahyben@denevy.eu,ahyben@denevy.eu,G2 Profile Anatomy,,2022-09-29 06:06:56,,,,,,,G2 +810,Andrej Hyben,ahyben@denevy.eu,ahyben@denevy.eu,The Review Rundown,,2022-09-29 06:06:56,,,,,,,G2 +811,Andrej Hyben,ahyben@denevy.eu,ahyben@denevy.eu,Profile Performance & Lead Management,,2022-09-29 06:06:56,,,,,,,G2 +812,Andrej Hyben,ahyben@denevy.eu,ahyben@denevy.eu,Review Tracking & Brand Building,,2022-09-29 06:06:56,,,,,,,G2 +813,Mohd Saif,msaif@g2.com,msaif@g2.com,Profile Performance & Lead Management,,2022-09-29 06:03:16,,,,,,,G2 +814,Mohd Saif,msaif@g2.com,msaif@g2.com,The Review Rundown,,2022-09-29 06:03:16,,,,,,,G2 +815,Mohd Saif,msaif@g2.com,msaif@g2.com,Review Tracking & Brand Building,,2022-09-29 06:03:16,,,,,,,G2 +816,Mohd Saif,msaif@g2.com,msaif@g2.com,G2 Profile Anatomy,,2022-09-29 06:03:16,,,,,,,G2 +817,Cansın Erdinç,cansin@intenseye.com,cansin@intenseye.com,G2 Profile Anatomy,,2022-09-29 05:58:56,,,,,,,G2 +818,Cansın Erdinç,cansin@intenseye.com,cansin@intenseye.com,Review Tracking & Brand Building,,2022-09-29 05:58:56,,,,,,,G2 +819,Cansın Erdinç,cansin@intenseye.com,cansin@intenseye.com,Profile Performance & Lead Management,,2022-09-29 05:58:56,,,,,,,G2 +820,Cansın Erdinç,cansin@intenseye.com,cansin@intenseye.com,The Review Rundown,,2022-09-29 05:58:56,,,,,,,G2 +821,Tobias Blick,t.blick@shopware.com,t.blick@shopware.com,Review Tracking & Brand Building,,2022-09-29 05:45:45,,,,,,,G2 +822,Tobias Blick,t.blick@shopware.com,t.blick@shopware.com,G2 Profile Anatomy,,2022-09-29 05:45:45,,,,,,,G2 +823,Tobias Blick,t.blick@shopware.com,t.blick@shopware.com,The Review Rundown,,2022-09-29 05:45:45,,,,,,,G2 +824,Tobias Blick,t.blick@shopware.com,t.blick@shopware.com,Profile Performance & Lead Management,,2022-09-29 05:45:45,,,,,,,G2 +825,Anu Chadha,achadha@g2.com,achadha@g2.com,Profile Performance & Lead Management,,2022-09-29 05:40:40,,,,,,,G2 +826,Anu Chadha,achadha@g2.com,achadha@g2.com,Review Tracking & Brand Building,,2022-09-29 05:40:40,,,,,,,G2 +827,Anu Chadha,achadha@g2.com,achadha@g2.com,The Review Rundown,,2022-09-29 05:40:40,,,,,,,G2 +828,Anu Chadha,achadha@g2.com,achadha@g2.com,G2 Profile Anatomy,,2022-09-29 05:40:40,,,,,,,G2 +829,Aravind Raj T,araj@g2.com,araj@g2.com,G2 Profile Anatomy,,2022-09-29 05:34:17,,,,,,,G2 +830,Aravind Raj T,araj@g2.com,araj@g2.com,Review Tracking & Brand Building,,2022-09-29 05:34:17,,,,,,,G2 +831,Aravind Raj T,araj@g2.com,araj@g2.com,Profile Performance & Lead Management,,2022-09-29 05:34:17,,,,,,,G2 +832,Aravind Raj T,araj@g2.com,araj@g2.com,The Review Rundown,,2022-09-29 05:34:17,,,,,,,G2 +833,Karan Singh,karan.singh@vamsglobal.com,karan.singh@vamsglobal.com,The Review Rundown,,2022-09-29 05:31:50,,,,,,,G2 +834,Karan Singh,karan.singh@vamsglobal.com,karan.singh@vamsglobal.com,Profile Performance & Lead Management,,2022-09-29 05:31:50,,,,,,,G2 +835,Karan Singh,karan.singh@vamsglobal.com,karan.singh@vamsglobal.com,Review Tracking & Brand Building,,2022-09-29 05:31:50,,,,,,,G2 +836,Karan Singh,karan.singh@vamsglobal.com,karan.singh@vamsglobal.com,G2 Profile Anatomy,LIVE,2022-09-29 05:31:50,2022-11-14 10:57:23,,1,0%,,,G2 +837,Savo Vujovic,savo.vujovic@incsub.com,savo.vujovic@incsub.com,The Review Rundown,,2022-09-29 05:28:44,,,,,,,G2 +838,Savo Vujovic,savo.vujovic@incsub.com,savo.vujovic@incsub.com,G2 Profile Anatomy,,2022-09-29 05:28:44,,,,,,,G2 +839,Savo Vujovic,savo.vujovic@incsub.com,savo.vujovic@incsub.com,Profile Performance & Lead Management,,2022-09-29 05:28:44,,,,,,,G2 +840,Savo Vujovic,savo.vujovic@incsub.com,savo.vujovic@incsub.com,Review Tracking & Brand Building,,2022-09-29 05:28:44,,,,,,,G2 +841,Chirag Parmar,chirag.parmar@webengage.com,chirag.parmar@webengage.com,Review Tracking & Brand Building,,2022-09-29 05:26:14,,,,,,,G2 +842,Chirag Parmar,chirag.parmar@webengage.com,chirag.parmar@webengage.com,G2 Profile Anatomy,,2022-09-29 05:26:14,,,,,,,G2 +843,Chirag Parmar,chirag.parmar@webengage.com,chirag.parmar@webengage.com,The Review Rundown,,2022-09-29 05:26:14,,,,,,,G2 +844,Chirag Parmar,chirag.parmar@webengage.com,chirag.parmar@webengage.com,Profile Performance & Lead Management,,2022-09-29 05:26:14,,,,,,,G2 +845,Social Media,social@nextbillion.ai,social@nextbillion.ai,Profile Performance & Lead Management,,2022-09-29 05:22:24,,,,,,,G2 +846,Social Media,social@nextbillion.ai,social@nextbillion.ai,The Review Rundown,,2022-09-29 05:22:24,,,,,,,G2 +847,Social Media,social@nextbillion.ai,social@nextbillion.ai,Review Tracking & Brand Building,,2022-09-29 05:22:24,,,,,,,G2 +848,Social Media,social@nextbillion.ai,social@nextbillion.ai,G2 Profile Anatomy,,2022-09-29 05:22:24,,,,,,,G2 +849,Asaf Bernstein,asaf.bernstein@dealhub.io,asaf.bernstein@dealhub.io,The Review Rundown,,2022-09-29 05:21:31,,,,,,,G2 +850,Asaf Bernstein,asaf.bernstein@dealhub.io,asaf.bernstein@dealhub.io,Profile Performance & Lead Management,,2022-09-29 05:21:31,,,,,,,G2 +851,Asaf Bernstein,asaf.bernstein@dealhub.io,asaf.bernstein@dealhub.io,Review Tracking & Brand Building,,2022-09-29 05:21:31,,,,,,,G2 +852,Asaf Bernstein,asaf.bernstein@dealhub.io,asaf.bernstein@dealhub.io,G2 Profile Anatomy,,2022-09-29 05:21:31,,,,,,,G2 +853,Casey Krebs,casey@apollo.io,casey@apollo.io,Profile Performance & Lead Management,,2022-09-29 05:14:35,,,,,,,G2 +854,Casey Krebs,casey@apollo.io,casey@apollo.io,G2 Profile Anatomy,,2022-09-29 05:14:35,,,,,,,G2 +855,Casey Krebs,casey@apollo.io,casey@apollo.io,Review Tracking & Brand Building,,2022-09-29 05:14:35,,,,,,,G2 +856,Casey Krebs,casey@apollo.io,casey@apollo.io,The Review Rundown,,2022-09-29 05:14:35,,,,,,,G2 +857,Mallikharjun Rao,mallikharjunarao.p@sstsinc.com,mallikharjunarao.p@sstsinc.com,The Review Rundown,,2022-09-29 04:53:00,,,,,,,G2 +858,Mallikharjun Rao,mallikharjunarao.p@sstsinc.com,mallikharjunarao.p@sstsinc.com,Profile Performance & Lead Management,,2022-09-29 04:53:00,,,,,,,G2 +859,Mallikharjun Rao,mallikharjunarao.p@sstsinc.com,mallikharjunarao.p@sstsinc.com,Review Tracking & Brand Building,,2022-09-29 04:53:00,,,,,,,G2 +860,Mallikharjun Rao,mallikharjunarao.p@sstsinc.com,mallikharjunarao.p@sstsinc.com,G2 Profile Anatomy,,2022-09-29 04:53:00,,,,,,,G2 +861,Jovial Jewel Chakma,jchakma@g2.com,jchakma@g2.com,Profile Performance & Lead Management,,2022-09-29 04:28:39,,,,,,,G2 +862,Jovial Jewel Chakma,jchakma@g2.com,jchakma@g2.com,G2 Profile Anatomy,,2022-09-29 04:28:39,,,,,,,G2 +863,Jovial Jewel Chakma,jchakma@g2.com,jchakma@g2.com,Review Tracking & Brand Building,,2022-09-29 04:28:39,,,,,,,G2 +864,Jovial Jewel Chakma,jchakma@g2.com,jchakma@g2.com,The Review Rundown,,2022-09-29 04:28:39,,,,,,,G2 +865,Badger Maps,marketing@badgermapping.com,marketing@badgermapping.com,G2 Profile Anatomy,,2022-09-29 03:56:56,,,,,,,G2 +866,Badger Maps,marketing@badgermapping.com,marketing@badgermapping.com,Profile Performance & Lead Management,,2022-09-29 03:56:56,,,,,,,G2 +867,Badger Maps,marketing@badgermapping.com,marketing@badgermapping.com,Review Tracking & Brand Building,LIVE,2022-09-29 03:56:56,2022-09-29 04:30:44,,1,0%,,,G2 +868,Badger Maps,marketing@badgermapping.com,marketing@badgermapping.com,The Review Rundown,,2022-09-29 03:56:56,,,,,,,G2 +869,Marketing Team,marketing@trica.co,marketing@trica.co,The Review Rundown,,2022-09-29 03:44:52,,,,,,,G2 +870,Marketing Team,marketing@trica.co,marketing@trica.co,Review Tracking & Brand Building,,2022-09-29 03:44:52,,,,,,,G2 +871,Marketing Team,marketing@trica.co,marketing@trica.co,Profile Performance & Lead Management,,2022-09-29 03:44:52,,,,,,,G2 +872,Marketing Team,marketing@trica.co,marketing@trica.co,G2 Profile Anatomy,,2022-09-29 03:44:52,,,,,,,G2 +873,Prashant Yadav,prashant@onehash.ai,prashant@onehash.ai,Profile Performance & Lead Management,,2022-09-29 03:38:32,,,,,,,G2 +874,Prashant Yadav,prashant@onehash.ai,prashant@onehash.ai,The Review Rundown,,2022-09-29 03:38:32,,,,,,,G2 +875,Prashant Yadav,prashant@onehash.ai,prashant@onehash.ai,G2 Profile Anatomy,20,2022-09-29 03:38:32,2022-09-29 03:38:54,,1,0%,,,G2 +876,Prashant Yadav,prashant@onehash.ai,prashant@onehash.ai,Review Tracking & Brand Building,,2022-09-29 03:38:32,,,,,,,G2 +877,Han Yun Chua,hanyun.chua@workato.com,hanyun.chua@workato.com,The Review Rundown,,2022-09-29 02:26:59,,,,,,,G2 +878,Han Yun Chua,hanyun.chua@workato.com,hanyun.chua@workato.com,Profile Performance & Lead Management,,2022-09-29 02:26:59,,,,,,,G2 +879,Han Yun Chua,hanyun.chua@workato.com,hanyun.chua@workato.com,Review Tracking & Brand Building,,2022-09-29 02:26:59,,,,,,,G2 +880,Han Yun Chua,hanyun.chua@workato.com,hanyun.chua@workato.com,G2 Profile Anatomy,,2022-09-29 02:26:59,,,,,,,G2 +881,Lachlan Brown,lachlan@ortto.com,lachlan@ortto.com,Profile Performance & Lead Management,,2022-09-29 02:03:17,,,,,,,G2 +882,Lachlan Brown,lachlan@ortto.com,lachlan@ortto.com,G2 Profile Anatomy,,2022-09-29 02:03:17,,,,,,,G2 +883,Lachlan Brown,lachlan@ortto.com,lachlan@ortto.com,Review Tracking & Brand Building,,2022-09-29 02:03:17,,,,,,,G2 +884,Lachlan Brown,lachlan@ortto.com,lachlan@ortto.com,The Review Rundown,,2022-09-29 02:03:17,,,,,,,G2 +885,Iris Chen,chenxiaotong@zwcad.com,chenxiaotong@zwcad.com,How to Use Buyer Intent,LIVE,2022-09-29 01:49:48,2022-09-29 01:49:48,,1,0%,,,G2 +886,Iris Chen,chenxiaotong@zwcad.com,chenxiaotong@zwcad.com,The Review Rundown,,2022-09-29 01:49:01,,,,,,,G2 +887,Iris Chen,chenxiaotong@zwcad.com,chenxiaotong@zwcad.com,Review Tracking & Brand Building,,2022-09-29 01:49:01,,,,,,,G2 +888,Iris Chen,chenxiaotong@zwcad.com,chenxiaotong@zwcad.com,Profile Performance & Lead Management,,2022-09-29 01:49:01,,,,,,,G2 +889,Iris Chen,chenxiaotong@zwcad.com,chenxiaotong@zwcad.com,G2 Profile Anatomy,,2022-09-29 01:49:01,,,,,,,G2 +890,Anthony Fusco,anthonyf@smartdraw.com,anthonyf@smartdraw.com,The Review Rundown,,2022-09-29 00:54:00,,,,,,,G2 +891,Anthony Fusco,anthonyf@smartdraw.com,anthonyf@smartdraw.com,G2 Profile Anatomy,,2022-09-29 00:54:00,,,,,,,G2 +892,Anthony Fusco,anthonyf@smartdraw.com,anthonyf@smartdraw.com,Profile Performance & Lead Management,,2022-09-29 00:54:00,,,,,,,G2 +893,Anthony Fusco,anthonyf@smartdraw.com,anthonyf@smartdraw.com,Review Tracking & Brand Building,,2022-09-29 00:54:00,,,,,,,G2 +894,Splose Support,support@splose.com,support@splose.com,Profile Performance & Lead Management,,2022-09-29 00:39:05,,,,,,,G2 +895,Splose Support,support@splose.com,support@splose.com,Review Tracking & Brand Building,,2022-09-29 00:39:05,,,,,,,G2 +896,Splose Support,support@splose.com,support@splose.com,The Review Rundown,,2022-09-29 00:39:05,,,,,,,G2 +897,Splose Support,support@splose.com,support@splose.com,G2 Profile Anatomy,20,2022-09-29 00:39:05,2022-09-29 00:39:16,,1,0%,,,G2 +898,Rach Charboneau,rachel@boardable.com,rachel@boardable.com,Review Tracking & Brand Building,,2022-09-29 00:09:14,,,,,,,G2 +899,Rach Charboneau,rachel@boardable.com,rachel@boardable.com,The Review Rundown,,2022-09-29 00:09:14,,,,,,,G2 +900,Rach Charboneau,rachel@boardable.com,rachel@boardable.com,Profile Performance & Lead Management,,2022-09-29 00:09:14,,,,,,,G2 +901,Rach Charboneau,rachel@boardable.com,rachel@boardable.com,G2 Profile Anatomy,,2022-09-29 00:09:14,,,,,,,G2 +902,Austin Stricker ,austin.stricker@smartsheet.com,austin.stricker@smartsheet.com,G2 Profile Anatomy,,2022-09-28 23:56:02,,,,,,,G2 +903,Austin Stricker ,austin.stricker@smartsheet.com,austin.stricker@smartsheet.com,The Review Rundown,,2022-09-28 23:56:02,,,,,,,G2 +904,Austin Stricker ,austin.stricker@smartsheet.com,austin.stricker@smartsheet.com,Profile Performance & Lead Management,,2022-09-28 23:56:02,,,,,,,G2 +905,Austin Stricker ,austin.stricker@smartsheet.com,austin.stricker@smartsheet.com,Review Tracking & Brand Building,,2022-09-28 23:56:02,,,,,,,G2 +906,Jennifer Holmes,jholmes@globalization-partners.com,jholmes@globalization-partners.com,G2 Profile Anatomy,,2022-09-28 23:27:43,,,,,,,G2 +907,Jennifer Holmes,jholmes@globalization-partners.com,jholmes@globalization-partners.com,The Review Rundown,,2022-09-28 23:27:43,,,,,,,G2 +908,Jennifer Holmes,jholmes@globalization-partners.com,jholmes@globalization-partners.com,Review Tracking & Brand Building,,2022-09-28 23:27:43,,,,,,,G2 +909,Jennifer Holmes,jholmes@globalization-partners.com,jholmes@globalization-partners.com,Profile Performance & Lead Management,,2022-09-28 23:27:43,,,,,,,G2 +910,Ops PackageCloud,ops@packagecloud.io,ops@packagecloud.io,The Review Rundown,,2022-09-28 23:19:46,,,,,,,G2 +911,Ops PackageCloud,ops@packagecloud.io,ops@packagecloud.io,G2 Profile Anatomy,,2022-09-28 23:19:46,,,,,,,G2 +912,Ops PackageCloud,ops@packagecloud.io,ops@packagecloud.io,Review Tracking & Brand Building,,2022-09-28 23:19:46,,,,,,,G2 +913,Ops PackageCloud,ops@packagecloud.io,ops@packagecloud.io,Profile Performance & Lead Management,,2022-09-28 23:19:46,,,,,,,G2 +914,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,How to Use Buyer Intent,LIVE,2022-09-28 22:51:21,2022-09-28 22:51:21,2022-09-28 23:29:25,1,100%,Buyer Intent Score Filter Recommendations,2022-09-28 23:29:25,G2 +915,Mellisa Ooi,mellisa.ooi@intellihr.com,mellisa.ooi@intellihr.com,The Review Rundown,,2022-09-28 22:43:40,,,,,,,G2 +916,Mellisa Ooi,mellisa.ooi@intellihr.com,mellisa.ooi@intellihr.com,Review Tracking & Brand Building,,2022-09-28 22:43:40,,,,,,,G2 +917,Mellisa Ooi,mellisa.ooi@intellihr.com,mellisa.ooi@intellihr.com,Profile Performance & Lead Management,,2022-09-28 22:43:40,,,,,,,G2 +918,Mellisa Ooi,mellisa.ooi@intellihr.com,mellisa.ooi@intellihr.com,G2 Profile Anatomy,,2022-09-28 22:43:40,,,,,,,G2 +919,Chloe Schneider,chloe@autopilotapp.com,chloe@autopilotapp.com,The Review Rundown,,2022-09-28 22:42:22,,,,,,,G2 +920,Chloe Schneider,chloe@autopilotapp.com,chloe@autopilotapp.com,G2 Profile Anatomy,,2022-09-28 22:42:22,,,,,,,G2 +921,Chloe Schneider,chloe@autopilotapp.com,chloe@autopilotapp.com,Review Tracking & Brand Building,,2022-09-28 22:42:22,,,,,,,G2 +922,Chloe Schneider,chloe@autopilotapp.com,chloe@autopilotapp.com,Profile Performance & Lead Management,,2022-09-28 22:42:22,,,,,,,G2 +923,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,Buyer Intent Basics,LIVE,2022-09-28 22:30:12,2022-09-28 22:30:12,2022-09-28 22:50:39,1,100%,Integrations,2022-09-28 22:50:39,G2 +924,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,G2 Profile Anatomy,,2022-09-28 22:28:01,,,,,,,G2 +925,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,Profile Performance & Lead Management,,2022-09-28 22:28:01,,,,,,,G2 +926,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,The Review Rundown,,2022-09-28 22:28:01,,,,,,,G2 +927,Chelsey Wyatt,chelsey.wyatt@podium.com,chelsey.wyatt@podium.com,Review Tracking & Brand Building,,2022-09-28 22:28:01,,,,,,,G2 +928,Missy Stockton,missy@gettactic.com,missy@gettactic.com,The Review Rundown,,2022-09-28 22:11:56,,,,,,,G2 +929,Missy Stockton,missy@gettactic.com,missy@gettactic.com,Profile Performance & Lead Management,,2022-09-28 22:11:56,,,,,,,G2 +930,Missy Stockton,missy@gettactic.com,missy@gettactic.com,G2 Profile Anatomy,,2022-09-28 22:11:56,,,,,,,G2 +931,Missy Stockton,missy@gettactic.com,missy@gettactic.com,Review Tracking & Brand Building,,2022-09-28 22:11:56,,,,,,,G2 +932,Daniel Saunders,dsaunders@swipeclock.com,dsaunders@swipeclock.com,Buyer Intent Basics,LIVE,2022-09-28 22:07:06,2022-09-28 22:07:07,,1,0%,,,G2 +933,Daniel Saunders,dsaunders@swipeclock.com,dsaunders@swipeclock.com,The Review Rundown,,2022-09-28 22:06:36,,,,,,,G2 +934,Daniel Saunders,dsaunders@swipeclock.com,dsaunders@swipeclock.com,G2 Profile Anatomy,,2022-09-28 22:06:36,,,,,,,G2 +935,Daniel Saunders,dsaunders@swipeclock.com,dsaunders@swipeclock.com,Profile Performance & Lead Management,,2022-09-28 22:06:36,,,,,,,G2 +936,Daniel Saunders,dsaunders@swipeclock.com,dsaunders@swipeclock.com,Review Tracking & Brand Building,,2022-09-28 22:06:36,,,,,,,G2 +937,Maggie Knox,maggie.knox@skai.io,maggie.knox@skai.io,Profile Performance & Lead Management,,2022-09-28 22:02:44,,,,,,,G2 +938,Maggie Knox,maggie.knox@skai.io,maggie.knox@skai.io,G2 Profile Anatomy,,2022-09-28 22:02:44,,,,,,,G2 +939,Maggie Knox,maggie.knox@skai.io,maggie.knox@skai.io,The Review Rundown,,2022-09-28 22:02:44,,,,,,,G2 +940,Maggie Knox,maggie.knox@skai.io,maggie.knox@skai.io,Review Tracking & Brand Building,,2022-09-28 22:02:44,,,,,,,G2 +941,Dave Lawson,dave.lawson@docebo.com,dave.lawson@docebo.com,Review Tracking & Brand Building,,2022-09-28 22:01:54,,,,,,,G2 +942,Dave Lawson,dave.lawson@docebo.com,dave.lawson@docebo.com,G2 Profile Anatomy,,2022-09-28 22:01:54,,,,,,,G2 +943,Dave Lawson,dave.lawson@docebo.com,dave.lawson@docebo.com,Profile Performance & Lead Management,,2022-09-28 22:01:54,,,,,,,G2 +944,Dave Lawson,dave.lawson@docebo.com,dave.lawson@docebo.com,The Review Rundown,,2022-09-28 22:01:54,,,,,,,G2 +945,Sydney Hughes,shughes@g2.com,shughes@g2.com,Profile Performance & Lead Management,,2022-09-28 22:01:44,,,,,,,G2 +946,Sydney Hughes,shughes@g2.com,shughes@g2.com,G2 Profile Anatomy,20,2022-09-28 22:01:44,2022-09-29 16:17:22,,1,0%,,,G2 +947,Sydney Hughes,shughes@g2.com,shughes@g2.com,The Review Rundown,LIVE,2022-09-28 22:01:44,2022-09-29 16:17:27,,1,0%,,,G2 +948,Sydney Hughes,shughes@g2.com,shughes@g2.com,Review Tracking & Brand Building,,2022-09-28 22:01:44,,,,,,,G2 +949,Hana Pham,hana.pham@acquire.io,hana.pham@acquire.io,Review Tracking & Brand Building,,2022-09-28 21:55:42,,,,,,,G2 +950,Hana Pham,hana.pham@acquire.io,hana.pham@acquire.io,The Review Rundown,,2022-09-28 21:55:42,,,,,,,G2 +951,Hana Pham,hana.pham@acquire.io,hana.pham@acquire.io,Profile Performance & Lead Management,,2022-09-28 21:55:42,,,,,,,G2 +952,Hana Pham,hana.pham@acquire.io,hana.pham@acquire.io,G2 Profile Anatomy,,2022-09-28 21:55:42,,,,,,,G2 +953,Conor Foley,cfoley@g2.com,cfoley@g2.com,G2 Profile Anatomy,20,2022-09-28 21:42:59,2022-09-28 21:44:55,,1,0%,,,G2 +954,Conor Foley,cfoley@g2.com,cfoley@g2.com,Review Tracking & Brand Building,,2022-09-28 21:42:59,,,,,,,G2 +955,Conor Foley,cfoley@g2.com,cfoley@g2.com,Profile Performance & Lead Management,,2022-09-28 21:42:59,,,,,,,G2 +956,Conor Foley,cfoley@g2.com,cfoley@g2.com,The Review Rundown,,2022-09-28 21:42:59,,,,,,,G2 +957,Andi Platt,aplatt@g2.com,aplatt@g2.com,Review Tracking & Brand Building,,2022-09-28 21:37:39,,,,,,,G2 +958,Andi Platt,aplatt@g2.com,aplatt@g2.com,The Review Rundown,,2022-09-28 21:37:39,,,,,,,G2 +959,Andi Platt,aplatt@g2.com,aplatt@g2.com,G2 Profile Anatomy,,2022-09-28 21:37:39,,,,,,,G2 +960,Andi Platt,aplatt@g2.com,aplatt@g2.com,Profile Performance & Lead Management,,2022-09-28 21:37:39,,,,,,,G2 +961,Jonathan Kentico,jonathanh@kentico.com,jonathanh@kentico.com,Profile Performance & Lead Management,,2022-09-28 21:34:43,,,,,,,G2 +962,Jonathan Kentico,jonathanh@kentico.com,jonathanh@kentico.com,Review Tracking & Brand Building,LIVE,2022-09-28 21:34:43,2022-11-01 16:03:01,,1,0%,,,G2 +963,Jonathan Kentico,jonathanh@kentico.com,jonathanh@kentico.com,The Review Rundown,,2022-09-28 21:34:43,,,,,,,G2 +964,Jonathan Kentico,jonathanh@kentico.com,jonathanh@kentico.com,G2 Profile Anatomy,,2022-09-28 21:34:43,,,,,,,G2 +965,Jared Olschewski,jared@kadence.co,jared@kadence.co,G2 Profile Anatomy,,2022-09-28 21:34:04,,,,,,,G2 +966,Jared Olschewski,jared@kadence.co,jared@kadence.co,The Review Rundown,,2022-09-28 21:34:04,,,,,,,G2 +967,Jared Olschewski,jared@kadence.co,jared@kadence.co,Review Tracking & Brand Building,,2022-09-28 21:34:04,,,,,,,G2 +968,Jared Olschewski,jared@kadence.co,jared@kadence.co,Profile Performance & Lead Management,,2022-09-28 21:34:04,,,,,,,G2 +969,Ryan Fuller,rfuller@g2.com,rfuller@g2.com,The Review Rundown,,2022-09-28 21:19:48,,,,,,,G2 +970,Ryan Fuller,rfuller@g2.com,rfuller@g2.com,Profile Performance & Lead Management,,2022-09-28 21:19:48,,,,,,,G2 +971,Ryan Fuller,rfuller@g2.com,rfuller@g2.com,Review Tracking & Brand Building,,2022-09-28 21:19:48,,,,,,,G2 +972,Ryan Fuller,rfuller@g2.com,rfuller@g2.com,G2 Profile Anatomy,,2022-09-28 21:19:48,,,,,,,G2 +973,Eunice Falqueza,eunice.falqueza@celohealth.com,eunice.falqueza@celohealth.com,Review Tracking & Brand Building,,2022-09-28 21:16:51,,,,,,,G2 +974,Eunice Falqueza,eunice.falqueza@celohealth.com,eunice.falqueza@celohealth.com,Profile Performance & Lead Management,,2022-09-28 21:16:51,,,,,,,G2 +975,Eunice Falqueza,eunice.falqueza@celohealth.com,eunice.falqueza@celohealth.com,The Review Rundown,,2022-09-28 21:16:51,,,,,,,G2 +976,Eunice Falqueza,eunice.falqueza@celohealth.com,eunice.falqueza@celohealth.com,G2 Profile Anatomy,,2022-09-28 21:16:51,,,,,,,G2 +977,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,Review Tracking & Brand Building,,2022-09-28 21:14:17,,,,,,,G2 +978,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,G2 Profile Anatomy,20,2022-09-28 21:14:17,2022-10-01 15:13:49,,1,17%,What is the Value of a G2 Profile?,2022-10-01 15:23:25,G2 +979,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,The Review Rundown,LIVE,2022-09-28 21:14:17,2022-10-04 17:56:39,,1,43%,Intro/4 Pillars,2022-10-04 18:04:36,G2 +980,Tristan Soliven,tristan.soliven@embarcadero.com,tristan.soliven@embarcadero.com,Profile Performance & Lead Management,,2022-09-28 21:14:17,,,,,,,G2 +981,Daniel Soto Zeevaert,daniel.soto@timi.eu,daniel.soto@timi.eu,The Review Rundown,,2022-09-28 21:07:38,,,,,,,G2 +982,Daniel Soto Zeevaert,daniel.soto@timi.eu,daniel.soto@timi.eu,Review Tracking & Brand Building,,2022-09-28 21:07:38,,,,,,,G2 +983,Daniel Soto Zeevaert,daniel.soto@timi.eu,daniel.soto@timi.eu,Profile Performance & Lead Management,,2022-09-28 21:07:38,,,,,,,G2 +984,Daniel Soto Zeevaert,daniel.soto@timi.eu,daniel.soto@timi.eu,G2 Profile Anatomy,,2022-09-28 21:07:38,,,,,,,G2 +985,Gina Carr,gcarr@g2.com,gcarr@g2.com,How to Respond to Reviews,LIVE,2022-09-28 21:06:14,2022-09-28 21:06:15,2022-09-28 21:07:17,1,100%,Unactionable Negative Reviews,2022-09-28 21:07:17,G2 +986,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,How to Use Buyer Intent,LIVE,2022-09-28 21:04:02,2022-09-28 21:04:02,2022-09-28 21:10:33,1,100%,Buyer Intent Score Filter Recommendations,2022-09-28 21:10:33,G2 +987,Gina Carr,gcarr@g2.com,gcarr@g2.com,Preparing for G2 Reports,LIVE,2022-09-28 21:03:49,2022-09-28 21:03:50,2022-09-28 21:04:56,1,100%,Results Index Criteria,2022-09-28 21:04:56,G2 +988,Gina Carr,gcarr@g2.com,gcarr@g2.com,How to Use Buyer Intent,LIVE,2022-09-28 21:00:59,2022-09-28 21:00:59,2022-09-28 21:02:35,1,100%,Buyer Intent Score Filter Recommendations,2022-09-28 21:02:35,G2 +989,Mike Learner,learner@labware.com,learner@labware.com,Profile Performance & Lead Management,,2022-09-28 21:00:07,,,,,,,G2 +990,Mike Learner,learner@labware.com,learner@labware.com,The Review Rundown,LIVE,2022-09-28 21:00:07,2022-09-28 21:00:45,,1,0%,,,G2 +991,Mike Learner,learner@labware.com,learner@labware.com,G2 Profile Anatomy,,2022-09-28 21:00:07,,,,,,,G2 +992,Mike Learner,learner@labware.com,learner@labware.com,Review Tracking & Brand Building,,2022-09-28 21:00:07,,,,,,,G2 +993,Gina Carr,gcarr@g2.com,gcarr@g2.com,Buyer Intent Basics,5,2022-09-28 20:58:15,2022-09-28 20:58:15,2022-09-28 21:00:21,1,100%,Integrations,2022-09-28 21:00:21,G2 +994,Gina Carr,gcarr@g2.com,gcarr@g2.com,Buyer Intent Basics,5,2022-09-28 20:58:15,2022-09-28 21:02:44,2022-09-28 21:03:33,2,100%,Integrations,2022-09-28 21:03:33,G2 +995,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,Preparing for G2 Reports,LIVE,2022-09-28 20:57:29,2022-09-28 20:57:30,2022-09-28 21:03:34,1,100%,Results Index Criteria,2022-09-28 21:03:34,G2 +996,Trent Whatcott,trent.whatcott@primary-intel.com,trent.whatcott@primary-intel.com,Review Tracking & Brand Building,,2022-09-28 20:54:11,,,,,,,G2 +997,Trent Whatcott,trent.whatcott@primary-intel.com,trent.whatcott@primary-intel.com,G2 Profile Anatomy,20,2022-09-28 20:54:11,2022-09-28 20:54:21,,1,0%,,,G2 +998,Trent Whatcott,trent.whatcott@primary-intel.com,trent.whatcott@primary-intel.com,Profile Performance & Lead Management,,2022-09-28 20:54:11,,,,,,,G2 +999,Trent Whatcott,trent.whatcott@primary-intel.com,trent.whatcott@primary-intel.com,The Review Rundown,,2022-09-28 20:54:11,,,,,,,G2 +1000,Gina Carr,gcarr@g2.com,gcarr@g2.com,What is the G2 Content Subscription?,9,2022-09-28 20:53:23,2022-09-28 20:53:23,2022-09-28 20:57:02,1,100%,Infographics,2022-09-28 20:57:02,G2 +1001,Ryan Hardesty,rhardesty@phishingbox.com,rhardesty@phishingbox.com,The Review Rundown,,2022-09-28 20:51:19,,,,,,,G2 +1002,Ryan Hardesty,rhardesty@phishingbox.com,rhardesty@phishingbox.com,G2 Profile Anatomy,,2022-09-28 20:51:19,,,,,,,G2 +1003,Ryan Hardesty,rhardesty@phishingbox.com,rhardesty@phishingbox.com,Profile Performance & Lead Management,,2022-09-28 20:51:19,,,,,,,G2 +1004,Ryan Hardesty,rhardesty@phishingbox.com,rhardesty@phishingbox.com,Review Tracking & Brand Building,,2022-09-28 20:51:19,,,,,,,G2 +1005,Coco Wang,coco.wang@d2l.com,coco.wang@d2l.com,The Review Rundown,LIVE,2022-09-28 20:47:45,2022-10-13 20:00:56,2022-10-13 20:28:48,1,100%,Review Moderation,2022-10-13 20:28:48,G2 +1006,Coco Wang,coco.wang@d2l.com,coco.wang@d2l.com,Profile Performance & Lead Management,LIVE,2022-09-28 20:47:45,2022-09-28 21:30:11,,1,63%,Profile Activity Page Overview,2022-09-29 16:47:47,G2 +1007,Coco Wang,coco.wang@d2l.com,coco.wang@d2l.com,Review Tracking & Brand Building,LIVE,2022-09-28 20:47:45,2022-10-13 20:29:16,,1,86%,Marketing Content: Reference Pages,2022-10-13 20:57:37,G2 +1008,Coco Wang,coco.wang@d2l.com,coco.wang@d2l.com,G2 Profile Anatomy,20,2022-09-28 20:47:45,2022-09-28 20:55:55,2022-09-28 21:30:03,1,100%,Top Tips Recap,2022-09-28 21:30:03,G2 +1009,Trish Kennedy,marketing@zudy.com,marketing@zudy.com,Review Tracking & Brand Building,,2022-09-28 20:45:13,,,,,,,G2 +1010,Trish Kennedy,marketing@zudy.com,marketing@zudy.com,G2 Profile Anatomy,20,2022-09-28 20:45:13,2022-09-28 20:48:19,,1,0%,,,G2 +1011,Trish Kennedy,marketing@zudy.com,marketing@zudy.com,The Review Rundown,,2022-09-28 20:45:13,,,,,,,G2 +1012,Trish Kennedy,marketing@zudy.com,marketing@zudy.com,Profile Performance & Lead Management,,2022-09-28 20:45:13,,,,,,,G2 +1013,Jegannath Ramanathan,jegannath@contactmonkey.com,jegannath@contactmonkey.com,Review Tracking & Brand Building,,2022-09-28 20:44:45,,,,,,,G2 +1014,Jegannath Ramanathan,jegannath@contactmonkey.com,jegannath@contactmonkey.com,G2 Profile Anatomy,,2022-09-28 20:44:45,,,,,,,G2 +1015,Jegannath Ramanathan,jegannath@contactmonkey.com,jegannath@contactmonkey.com,The Review Rundown,,2022-09-28 20:44:45,,,,,,,G2 +1016,Jegannath Ramanathan,jegannath@contactmonkey.com,jegannath@contactmonkey.com,Profile Performance & Lead Management,,2022-09-28 20:44:45,,,,,,,G2 +1017,Madavena Koushik,koushik.madavena@phenompeople.com,koushik.madavena@phenompeople.com,Review Tracking & Brand Building,,2022-09-28 20:38:42,,,,,,,G2 +1018,Madavena Koushik,koushik.madavena@phenompeople.com,koushik.madavena@phenompeople.com,Profile Performance & Lead Management,,2022-09-28 20:38:42,,,,,,,G2 +1019,Madavena Koushik,koushik.madavena@phenompeople.com,koushik.madavena@phenompeople.com,G2 Profile Anatomy,,2022-09-28 20:38:42,,,,,,,G2 +1020,Madavena Koushik,koushik.madavena@phenompeople.com,koushik.madavena@phenompeople.com,The Review Rundown,,2022-09-28 20:38:42,,,,,,,G2 +1021,Justin Freeland,jfreeland@revention.com,jfreeland@revention.com,The Review Rundown,,2022-09-28 20:38:24,,,,,,,G2 +1022,Justin Freeland,jfreeland@revention.com,jfreeland@revention.com,G2 Profile Anatomy,20,2022-09-28 20:38:24,2022-09-28 20:38:39,,1,0%,,,G2 +1023,Justin Freeland,jfreeland@revention.com,jfreeland@revention.com,Review Tracking & Brand Building,,2022-09-28 20:38:24,,,,,,,G2 +1024,Justin Freeland,jfreeland@revention.com,jfreeland@revention.com,Profile Performance & Lead Management,,2022-09-28 20:38:24,,,,,,,G2 +1025,Deborah Komkov,deborah@guusto.com,deborah@guusto.com,How to Respond to Reviews,LIVE,2022-09-28 20:34:01,2022-09-28 20:34:01,2022-09-28 20:38:30,1,100%,Unactionable Negative Reviews,2022-09-28 20:38:30,G2 +1026,Jacob Rouser,jrouser@groove.co,jrouser@groove.co,Profile Performance & Lead Management,,2022-09-28 20:33:06,,,,,,,G2 +1027,Jacob Rouser,jrouser@groove.co,jrouser@groove.co,Review Tracking & Brand Building,,2022-09-28 20:33:06,,,,,,,G2 +1028,Jacob Rouser,jrouser@groove.co,jrouser@groove.co,The Review Rundown,,2022-09-28 20:33:06,,,,,,,G2 +1029,Jacob Rouser,jrouser@groove.co,jrouser@groove.co,G2 Profile Anatomy,,2022-09-28 20:33:06,,,,,,,G2 +1030,Deborah Komkov,deborah@guusto.com,deborah@guusto.com,Profile Performance & Lead Management,,2022-09-28 20:30:52,,,,,,,G2 +1031,Deborah Komkov,deborah@guusto.com,deborah@guusto.com,G2 Profile Anatomy,20,2022-09-28 20:30:52,2022-09-28 20:31:31,2022-09-28 20:32:54,1,100%,Top Tips Recap,2022-09-28 20:32:54,G2 +1032,Deborah Komkov,deborah@guusto.com,deborah@guusto.com,Review Tracking & Brand Building,,2022-09-28 20:30:52,,,,,,,G2 +1033,Deborah Komkov,deborah@guusto.com,deborah@guusto.com,The Review Rundown,LIVE,2022-09-28 20:30:52,2022-09-28 20:38:40,,1,0%,,,G2 +1034,Sterling Kump,sterlingkump@gmail.com,sterlingkump@gmail.com,G2 Profile Anatomy,,2022-09-28 20:30:51,,,,,,,G2 +1035,Sterling Kump,sterlingkump@gmail.com,sterlingkump@gmail.com,Profile Performance & Lead Management,,2022-09-28 20:30:51,,,,,,,G2 +1036,Sterling Kump,sterlingkump@gmail.com,sterlingkump@gmail.com,Review Tracking & Brand Building,,2022-09-28 20:30:51,,,,,,,G2 +1037,Sterling Kump,sterlingkump@gmail.com,sterlingkump@gmail.com,The Review Rundown,,2022-09-28 20:30:51,,,,,,,G2 +1038,Muhammad Mustaqeem,muhammad.mustaqeem@orcanos.com,muhammad.mustaqeem@orcanos.com,The Review Rundown,,2022-09-28 20:28:46,,,,,,,G2 +1039,Muhammad Mustaqeem,muhammad.mustaqeem@orcanos.com,muhammad.mustaqeem@orcanos.com,G2 Profile Anatomy,20,2022-09-28 20:28:46,2022-09-28 20:29:09,,1,0%,,,G2 +1040,Muhammad Mustaqeem,muhammad.mustaqeem@orcanos.com,muhammad.mustaqeem@orcanos.com,Profile Performance & Lead Management,,2022-09-28 20:28:46,,,,,,,G2 +1041,Muhammad Mustaqeem,muhammad.mustaqeem@orcanos.com,muhammad.mustaqeem@orcanos.com,Review Tracking & Brand Building,,2022-09-28 20:28:46,,,,,,,G2 +1042,Lauren Worth,lauren.a.worth@gmail.com,lauren.a.worth@gmail.com,Profile Performance & Lead Management,,2022-09-28 20:26:55,,,,,,,G2 +1043,Lauren Worth,lauren.a.worth@gmail.com,lauren.a.worth@gmail.com,G2 Profile Anatomy,,2022-09-28 20:26:55,,,,,,,G2 +1044,Lauren Worth,lauren.a.worth@gmail.com,lauren.a.worth@gmail.com,The Review Rundown,,2022-09-28 20:26:55,,,,,,,G2 +1045,Lauren Worth,lauren.a.worth@gmail.com,lauren.a.worth@gmail.com,Review Tracking & Brand Building,,2022-09-28 20:26:55,,,,,,,G2 +1046,Emily Allan,eallan@qualtrics.com,eallan@qualtrics.com,G2 Profile Anatomy,20,2022-09-28 20:25:28,2022-09-28 20:25:47,,1,0%,,,G2 +1047,Emily Allan,eallan@qualtrics.com,eallan@qualtrics.com,The Review Rundown,,2022-09-28 20:25:28,,,,,,,G2 +1048,Emily Allan,eallan@qualtrics.com,eallan@qualtrics.com,Review Tracking & Brand Building,,2022-09-28 20:25:28,,,,,,,G2 +1049,Emily Allan,eallan@qualtrics.com,eallan@qualtrics.com,Profile Performance & Lead Management,,2022-09-28 20:25:28,,,,,,,G2 +1050,Jon Moody,jmoody@abnormalsecurity.com,jmoody@abnormalsecurity.com,The Review Rundown,,2022-09-28 20:25:15,,,,,,,G2 +1051,Jon Moody,jmoody@abnormalsecurity.com,jmoody@abnormalsecurity.com,Review Tracking & Brand Building,,2022-09-28 20:25:15,,,,,,,G2 +1052,Jon Moody,jmoody@abnormalsecurity.com,jmoody@abnormalsecurity.com,Profile Performance & Lead Management,,2022-09-28 20:25:15,,,,,,,G2 +1053,Jon Moody,jmoody@abnormalsecurity.com,jmoody@abnormalsecurity.com,G2 Profile Anatomy,,2022-09-28 20:25:15,,,,,,,G2 +1054,Natashia Shields,nshields@accelevents.com,nshields@accelevents.com,G2 Profile Anatomy,,2022-09-28 20:23:45,,,,,,,G2 +1055,Natashia Shields,nshields@accelevents.com,nshields@accelevents.com,The Review Rundown,,2022-09-28 20:23:45,,,,,,,G2 +1056,Natashia Shields,nshields@accelevents.com,nshields@accelevents.com,Review Tracking & Brand Building,,2022-09-28 20:23:45,,,,,,,G2 +1057,Natashia Shields,nshields@accelevents.com,nshields@accelevents.com,Profile Performance & Lead Management,,2022-09-28 20:23:45,,,,,,,G2 +1058,Jas Singh,jas.singh@emburse.com,jas.singh@emburse.com,Review Tracking & Brand Building,,2022-09-28 20:20:55,,,,,,,G2 +1059,Jas Singh,jas.singh@emburse.com,jas.singh@emburse.com,The Review Rundown,,2022-09-28 20:20:55,,,,,,,G2 +1060,Jas Singh,jas.singh@emburse.com,jas.singh@emburse.com,G2 Profile Anatomy,,2022-09-28 20:20:55,,,,,,,G2 +1061,Jas Singh,jas.singh@emburse.com,jas.singh@emburse.com,Profile Performance & Lead Management,,2022-09-28 20:20:55,,,,,,,G2 +1062,Matt Walker,mwalker@intermedia.com,mwalker@intermedia.com,G2 Profile Anatomy,,2022-09-28 20:17:30,,,,,,,G2 +1063,Matt Walker,mwalker@intermedia.com,mwalker@intermedia.com,Profile Performance & Lead Management,,2022-09-28 20:17:30,,,,,,,G2 +1064,Matt Walker,mwalker@intermedia.com,mwalker@intermedia.com,Review Tracking & Brand Building,,2022-09-28 20:17:30,,,,,,,G2 +1065,Matt Walker,mwalker@intermedia.com,mwalker@intermedia.com,The Review Rundown,,2022-09-28 20:17:30,,,,,,,G2 +1066,Patty Montenegro,patty@vanta.com,patty@vanta.com,The Review Rundown,,2022-09-28 20:17:06,,,,,,,G2 +1067,Patty Montenegro,patty@vanta.com,patty@vanta.com,Profile Performance & Lead Management,,2022-09-28 20:17:06,,,,,,,G2 +1068,Patty Montenegro,patty@vanta.com,patty@vanta.com,Review Tracking & Brand Building,,2022-09-28 20:17:06,,,,,,,G2 +1069,Patty Montenegro,patty@vanta.com,patty@vanta.com,G2 Profile Anatomy,,2022-09-28 20:17:06,,,,,,,G2 +1070,Elizabeth Hatt,elizabeth.hatt@jitterbit.com,elizabeth.hatt@jitterbit.com,Review Tracking & Brand Building,,2022-09-28 20:16:58,,,,,,,G2 +1071,Elizabeth Hatt,elizabeth.hatt@jitterbit.com,elizabeth.hatt@jitterbit.com,Profile Performance & Lead Management,,2022-09-28 20:16:58,,,,,,,G2 +1072,Elizabeth Hatt,elizabeth.hatt@jitterbit.com,elizabeth.hatt@jitterbit.com,G2 Profile Anatomy,,2022-09-28 20:16:58,,,,,,,G2 +1073,Elizabeth Hatt,elizabeth.hatt@jitterbit.com,elizabeth.hatt@jitterbit.com,The Review Rundown,,2022-09-28 20:16:58,,,,,,,G2 +1074,Angela Hicks,angela.hicks@tapclicks.com,angela.hicks@tapclicks.com,Review Tracking & Brand Building,,2022-09-28 20:11:59,,,,,,,G2 +1075,Angela Hicks,angela.hicks@tapclicks.com,angela.hicks@tapclicks.com,Profile Performance & Lead Management,,2022-09-28 20:11:59,,,,,,,G2 +1076,Angela Hicks,angela.hicks@tapclicks.com,angela.hicks@tapclicks.com,G2 Profile Anatomy,,2022-09-28 20:11:59,,,,,,,G2 +1077,Angela Hicks,angela.hicks@tapclicks.com,angela.hicks@tapclicks.com,The Review Rundown,,2022-09-28 20:11:59,,,,,,,G2 +1078,Rachel Metzler,rachmetz@gmail.com,rachmetz@gmail.com,The Review Rundown,,2022-09-28 20:09:48,,,,,,,G2 +1079,Rachel Metzler,rachmetz@gmail.com,rachmetz@gmail.com,Review Tracking & Brand Building,,2022-09-28 20:09:48,,,,,,,G2 +1080,Rachel Metzler,rachmetz@gmail.com,rachmetz@gmail.com,Profile Performance & Lead Management,,2022-09-28 20:09:48,,,,,,,G2 +1081,Rachel Metzler,rachmetz@gmail.com,rachmetz@gmail.com,G2 Profile Anatomy,,2022-09-28 20:09:48,,,,,,,G2 +1082,Aaron Rodgers,aaron.rodgers@corpay.com,aaron.rodgers@corpay.com,G2 Profile Anatomy,,2022-09-28 20:08:04,,,,,,,G2 +1083,Aaron Rodgers,aaron.rodgers@corpay.com,aaron.rodgers@corpay.com,Profile Performance & Lead Management,,2022-09-28 20:08:04,,,,,,,G2 +1084,Aaron Rodgers,aaron.rodgers@corpay.com,aaron.rodgers@corpay.com,Review Tracking & Brand Building,,2022-09-28 20:08:04,,,,,,,G2 +1085,Aaron Rodgers,aaron.rodgers@corpay.com,aaron.rodgers@corpay.com,The Review Rundown,,2022-09-28 20:08:04,,,,,,,G2 +1086,Yoselyn Rea,yrea@auditboard.com,yrea@auditboard.com,Review Tracking & Brand Building,,2022-09-28 20:06:30,,,,,,,G2 +1087,Yoselyn Rea,yrea@auditboard.com,yrea@auditboard.com,G2 Profile Anatomy,20,2022-09-28 20:06:30,2022-09-28 20:06:54,,1,0%,,,G2 +1088,Yoselyn Rea,yrea@auditboard.com,yrea@auditboard.com,The Review Rundown,,2022-09-28 20:06:30,,,,,,,G2 +1089,Yoselyn Rea,yrea@auditboard.com,yrea@auditboard.com,Profile Performance & Lead Management,,2022-09-28 20:06:30,,,,,,,G2 +1090,Tommy Larsen,tlarsen@g2.com,tlarsen@g2.com,G2 Profile Anatomy,,2022-09-28 20:06:15,,,,,,,G2 +1091,Tommy Larsen,tlarsen@g2.com,tlarsen@g2.com,Profile Performance & Lead Management,,2022-09-28 20:06:15,,,,,,,G2 +1092,Tommy Larsen,tlarsen@g2.com,tlarsen@g2.com,The Review Rundown,,2022-09-28 20:06:15,,,,,,,G2 +1093,Tommy Larsen,tlarsen@g2.com,tlarsen@g2.com,Review Tracking & Brand Building,,2022-09-28 20:06:15,,,,,,,G2 +1094,Nina Terregino,nina@goco.io,nina@goco.io,G2 Profile Anatomy,20,2022-09-28 20:06:01,2022-09-28 20:06:40,,1,0%,,,G2 +1095,Nina Terregino,nina@goco.io,nina@goco.io,The Review Rundown,,2022-09-28 20:06:01,,,,,,,G2 +1096,Nina Terregino,nina@goco.io,nina@goco.io,Profile Performance & Lead Management,,2022-09-28 20:06:01,,,,,,,G2 +1097,Nina Terregino,nina@goco.io,nina@goco.io,Review Tracking & Brand Building,,2022-09-28 20:06:01,,,,,,,G2 +1098,Cassandra Cucinotta,ccucinotta@g2.com,ccucinotta@g2.com,G2 Profile Anatomy,,2022-09-28 20:05:47,,,,,,,G2 +1099,Cassandra Cucinotta,ccucinotta@g2.com,ccucinotta@g2.com,Review Tracking & Brand Building,LIVE,2022-09-28 20:05:47,2022-11-18 19:59:30,,1,0%,,,G2 +1100,Cassandra Cucinotta,ccucinotta@g2.com,ccucinotta@g2.com,Profile Performance & Lead Management,,2022-09-28 20:05:47,,,,,,,G2 +1101,Cassandra Cucinotta,ccucinotta@g2.com,ccucinotta@g2.com,The Review Rundown,,2022-09-28 20:05:47,,,,,,,G2 +1102,Ciera Saldona,ciera.saldona@birdeye.com,ciera.saldona@birdeye.com,The Review Rundown,,2022-09-28 20:04:16,,,,,,,G2 +1103,Ciera Saldona,ciera.saldona@birdeye.com,ciera.saldona@birdeye.com,Review Tracking & Brand Building,,2022-09-28 20:04:16,,,,,,,G2 +1104,Ciera Saldona,ciera.saldona@birdeye.com,ciera.saldona@birdeye.com,G2 Profile Anatomy,,2022-09-28 20:04:16,,,,,,,G2 +1105,Ciera Saldona,ciera.saldona@birdeye.com,ciera.saldona@birdeye.com,Profile Performance & Lead Management,,2022-09-28 20:04:16,,,,,,,G2 +1106,Alex Cahn,acahn@g2crowd.com,acahn@g2crowd.com,The Review Rundown,,2022-09-28 20:00:43,,,,,,,G2 +1107,Alex Cahn,acahn@g2crowd.com,acahn@g2crowd.com,G2 Profile Anatomy,,2022-09-28 20:00:43,,,,,,,G2 +1108,Alex Cahn,acahn@g2crowd.com,acahn@g2crowd.com,Profile Performance & Lead Management,,2022-09-28 20:00:43,,,,,,,G2 +1109,Alex Cahn,acahn@g2crowd.com,acahn@g2crowd.com,Review Tracking & Brand Building,,2022-09-28 20:00:43,,,,,,,G2 +1110,Alex Rolfe,arolfe@cvent.com,arolfe@cvent.com,Buyer Intent Basics,5,2022-09-28 19:58:23,2022-09-28 19:58:23,,1,0%,,,G2 +1111,Alex Rolfe,arolfe@cvent.com,arolfe@cvent.com,Profile Performance & Lead Management,,2022-09-28 19:58:01,,,,,,,G2 +1112,Alex Rolfe,arolfe@cvent.com,arolfe@cvent.com,Review Tracking & Brand Building,,2022-09-28 19:58:01,,,,,,,G2 +1113,Alex Rolfe,arolfe@cvent.com,arolfe@cvent.com,The Review Rundown,,2022-09-28 19:58:01,,,,,,,G2 +1114,Alex Rolfe,arolfe@cvent.com,arolfe@cvent.com,G2 Profile Anatomy,,2022-09-28 19:58:01,,,,,,,G2 +1115,Amaia Porteiro,amaia@badgermapping.com,amaia@badgermapping.com,The Review Rundown,,2022-09-28 19:57:59,,,,,,,G2 +1116,Amaia Porteiro,amaia@badgermapping.com,amaia@badgermapping.com,Review Tracking & Brand Building,,2022-09-28 19:57:59,,,,,,,G2 +1117,Amaia Porteiro,amaia@badgermapping.com,amaia@badgermapping.com,Profile Performance & Lead Management,,2022-09-28 19:57:59,,,,,,,G2 +1118,Amaia Porteiro,amaia@badgermapping.com,amaia@badgermapping.com,G2 Profile Anatomy,,2022-09-28 19:57:59,,,,,,,G2 +1119,Gregory Heinz,gregory.heinz@qlik.com,gregory.heinz@qlik.com,Review Tracking & Brand Building,,2022-09-28 19:57:25,,,,,,,G2 +1120,Gregory Heinz,gregory.heinz@qlik.com,gregory.heinz@qlik.com,Profile Performance & Lead Management,,2022-09-28 19:57:25,,,,,,,G2 +1121,Gregory Heinz,gregory.heinz@qlik.com,gregory.heinz@qlik.com,G2 Profile Anatomy,,2022-09-28 19:57:25,,,,,,,G2 +1122,Gregory Heinz,gregory.heinz@qlik.com,gregory.heinz@qlik.com,The Review Rundown,,2022-09-28 19:57:25,,,,,,,G2 +1123,Mel Cagle,mel.cagle@simpro.us,mel.cagle@simpro.us,Profile Performance & Lead Management,LIVE,2022-09-28 19:57:07,2022-09-28 19:57:34,,1,0%,,,G2 +1124,Branca Ballot,branca@glideapps.com,branca@glideapps.com,The Review Rundown,,2022-09-28 19:57:07,,,,,,,G2 +1125,Branca Ballot,branca@glideapps.com,branca@glideapps.com,Review Tracking & Brand Building,,2022-09-28 19:57:07,,,,,,,G2 +1126,Branca Ballot,branca@glideapps.com,branca@glideapps.com,Profile Performance & Lead Management,,2022-09-28 19:57:07,,,,,,,G2 +1127,Mel Cagle,mel.cagle@simpro.us,mel.cagle@simpro.us,The Review Rundown,,2022-09-28 19:57:07,,,,,,,G2 +1128,Branca Ballot,branca@glideapps.com,branca@glideapps.com,G2 Profile Anatomy,20,2022-09-28 19:57:07,2022-09-28 19:58:42,,1,0%,,,G2 +1129,Mel Cagle,mel.cagle@simpro.us,mel.cagle@simpro.us,G2 Profile Anatomy,,2022-09-28 19:57:07,,,,,,,G2 +1130,Mel Cagle,mel.cagle@simpro.us,mel.cagle@simpro.us,Review Tracking & Brand Building,,2022-09-28 19:57:07,,,,,,,G2 +1131,Dan Kantor,dkantor@g2.com,dkantor@g2.com,Review Tracking & Brand Building,,2022-09-28 19:56:56,,,,,,,G2 +1132,Dan Kantor,dkantor@g2.com,dkantor@g2.com,G2 Profile Anatomy,,2022-09-28 19:56:56,,,,,,,G2 +1133,Dan Kantor,dkantor@g2.com,dkantor@g2.com,The Review Rundown,,2022-09-28 19:56:56,,,,,,,G2 +1134,Dan Kantor,dkantor@g2.com,dkantor@g2.com,Profile Performance & Lead Management,,2022-09-28 19:56:56,,,,,,,G2 +1135,Jessica Schaefer,jschaefer@servicetitan.com,jschaefer@servicetitan.com,G2 Profile Anatomy,,2022-09-28 19:55:48,,,,,,,G2 +1136,Jessica Schaefer,jschaefer@servicetitan.com,jschaefer@servicetitan.com,The Review Rundown,,2022-09-28 19:55:48,,,,,,,G2 +1137,Jessica Schaefer,jschaefer@servicetitan.com,jschaefer@servicetitan.com,Review Tracking & Brand Building,,2022-09-28 19:55:48,,,,,,,G2 +1138,Jessica Schaefer,jschaefer@servicetitan.com,jschaefer@servicetitan.com,Profile Performance & Lead Management,,2022-09-28 19:55:48,,,,,,,G2 +1139,Annie Chen,annie.chen@contractpodai.com,annie.chen@contractpodai.com,Profile Performance & Lead Management,,2022-09-28 19:52:17,,,,,,,G2 +1140,Annie Chen,annie.chen@contractpodai.com,annie.chen@contractpodai.com,Review Tracking & Brand Building,,2022-09-28 19:52:17,,,,,,,G2 +1141,Annie Chen,annie.chen@contractpodai.com,annie.chen@contractpodai.com,G2 Profile Anatomy,20,2022-09-28 19:52:17,2022-09-28 19:52:48,,1,0%,,,G2 +1142,Annie Chen,annie.chen@contractpodai.com,annie.chen@contractpodai.com,The Review Rundown,,2022-09-28 19:52:17,,,,,,,G2 +1143,Vander Holyfield,amritpal.vander@alight.com,amritpal.vander@alight.com,G2 Profile Anatomy,20,2022-09-28 19:51:56,2022-09-28 19:52:38,2022-10-11 21:45:51,1,100%,What is the Value of a G2 Profile?,2022-10-11 21:45:51,G2 +1144,Vander Holyfield,amritpal.vander@alight.com,amritpal.vander@alight.com,Profile Performance & Lead Management,,2022-09-28 19:51:56,,,,,,,G2 +1145,Vander Holyfield,amritpal.vander@alight.com,amritpal.vander@alight.com,The Review Rundown,LIVE,2022-09-28 19:51:56,2022-10-11 21:46:16,,1,57%,Review Attribution Tags,2022-10-11 22:15:40,G2 +1146,Vander Holyfield,amritpal.vander@alight.com,amritpal.vander@alight.com,Review Tracking & Brand Building,,2022-09-28 19:51:56,,,,,,,G2 +1147,Chris Marley,chris.marley@visier.com,chris.marley@visier.com,Review Tracking & Brand Building,,2022-09-28 19:51:12,,,,,,,G2 +1148,Chris Marley,chris.marley@visier.com,chris.marley@visier.com,G2 Profile Anatomy,,2022-09-28 19:51:12,,,,,,,G2 +1149,Chris Marley,chris.marley@visier.com,chris.marley@visier.com,The Review Rundown,,2022-09-28 19:51:12,,,,,,,G2 +1150,Chris Marley,chris.marley@visier.com,chris.marley@visier.com,Profile Performance & Lead Management,,2022-09-28 19:51:12,,,,,,,G2 +1151,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,G2 Profile Anatomy,,2022-09-28 19:51:04,,,,,,,G2 +1152,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,Review Tracking & Brand Building,,2022-09-28 19:51:04,,,,,,,G2 +1153,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,The Review Rundown,,2022-09-28 19:51:04,,,,,,,G2 +1154,Hafsa Nasrin,hafsa.nasrin@multiviewcorp.com,hafsa.nasrin@multiviewcorp.com,Profile Performance & Lead Management,,2022-09-28 19:51:04,,,,,,,G2 +1155,Alaina Loori,alaina@hackerrank.com,alaina@hackerrank.com,G2 Profile Anatomy,20,2022-09-28 19:50:17,2022-09-28 19:50:40,,1,17%,What is the Value of a G2 Profile?,2022-09-29 14:54:26,G2 +1156,Alaina Loori,alaina@hackerrank.com,alaina@hackerrank.com,Review Tracking & Brand Building,,2022-09-28 19:50:17,,,,,,,G2 +1157,Alaina Loori,alaina@hackerrank.com,alaina@hackerrank.com,The Review Rundown,LIVE,2022-09-28 19:50:17,2022-09-28 19:51:20,,1,0%,,,G2 +1158,Alaina Loori,alaina@hackerrank.com,alaina@hackerrank.com,Profile Performance & Lead Management,,2022-09-28 19:50:17,,,,,,,G2 +1159,Laura Evans,laura.evans@payemcard.com,laura.evans@payemcard.com,Profile Performance & Lead Management,,2022-09-28 19:48:49,,,,,,,G2 +1160,Laura Evans,laura.evans@payemcard.com,laura.evans@payemcard.com,G2 Profile Anatomy,,2022-09-28 19:48:49,,,,,,,G2 +1161,Laura Evans,laura.evans@payemcard.com,laura.evans@payemcard.com,The Review Rundown,,2022-09-28 19:48:49,,,,,,,G2 +1162,Laura Evans,laura.evans@payemcard.com,laura.evans@payemcard.com,Review Tracking & Brand Building,,2022-09-28 19:48:49,,,,,,,G2 +1163,Lisette Aguilar,lisette.aguilar@seeq.com,lisette.aguilar@seeq.com,Review Tracking & Brand Building,,2022-09-28 19:47:50,,,,,,,G2 +1164,Lisette Aguilar,lisette.aguilar@seeq.com,lisette.aguilar@seeq.com,Profile Performance & Lead Management,,2022-09-28 19:47:50,,,,,,,G2 +1165,Lisette Aguilar,lisette.aguilar@seeq.com,lisette.aguilar@seeq.com,The Review Rundown,,2022-09-28 19:47:50,,,,,,,G2 +1166,Lisette Aguilar,lisette.aguilar@seeq.com,lisette.aguilar@seeq.com,G2 Profile Anatomy,,2022-09-28 19:47:50,,,,,,,G2 +1167,Mikaela Waters,mikaela.waters@ironcladhq.com,mikaela.waters@ironcladhq.com,G2 Profile Anatomy,,2022-09-28 19:47:44,,,,,,,G2 +1168,Mikaela Waters,mikaela.waters@ironcladhq.com,mikaela.waters@ironcladhq.com,The Review Rundown,,2022-09-28 19:47:44,,,,,,,G2 +1169,Mikaela Waters,mikaela.waters@ironcladhq.com,mikaela.waters@ironcladhq.com,Profile Performance & Lead Management,,2022-09-28 19:47:44,,,,,,,G2 +1170,Mikaela Waters,mikaela.waters@ironcladhq.com,mikaela.waters@ironcladhq.com,Review Tracking & Brand Building,,2022-09-28 19:47:44,,,,,,,G2 +1171,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,Review Tracking & Brand Building,LIVE,2022-09-28 19:47:22,2022-09-28 20:48:46,2022-09-28 20:57:07,1,100%,Review Integrations,2022-09-28 20:57:07,G2 +1172,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,G2 Profile Anatomy,20,2022-09-28 19:47:22,2022-09-28 19:48:24,2022-09-28 19:59:52,1,100%,Top Tips Recap,2022-09-28 19:59:52,G2 +1173,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,Profile Performance & Lead Management,LIVE,2022-09-28 19:47:22,2022-09-28 20:00:16,2022-09-28 20:19:49,1,100%,Lead Webhooks,2022-09-28 20:19:49,G2 +1174,Brittney Viboch,bviboch@goformz.com,bviboch@goformz.com,The Review Rundown,LIVE,2022-09-28 19:47:22,2022-09-28 20:27:53,2022-09-28 20:48:25,1,100%,Review Moderation,2022-09-28 20:48:25,G2 +1175,Brooke Morse,bmorse@g2.com,bmorse@g2.com,The Review Rundown,,2022-09-28 19:46:07,,,,,,,G2 +1176,Brooke Morse,bmorse@g2.com,bmorse@g2.com,Review Tracking & Brand Building,,2022-09-28 19:46:07,,,,,,,G2 +1177,Brooke Morse,bmorse@g2.com,bmorse@g2.com,G2 Profile Anatomy,,2022-09-28 19:46:07,,,,,,,G2 +1178,Brooke Morse,bmorse@g2.com,bmorse@g2.com,Profile Performance & Lead Management,,2022-09-28 19:46:07,,,,,,,G2 +1179,Hannah Norrid,hnorrid@g2.com,hnorrid@g2.com,G2 Profile Anatomy,,2022-09-28 19:45:20,,,,,,,G2 +1180,Hannah Norrid,hnorrid@g2.com,hnorrid@g2.com,The Review Rundown,,2022-09-28 19:45:20,,,,,,,G2 +1181,Hannah Norrid,hnorrid@g2.com,hnorrid@g2.com,Profile Performance & Lead Management,,2022-09-28 19:45:20,,,,,,,G2 +1182,Hannah Norrid,hnorrid@g2.com,hnorrid@g2.com,Review Tracking & Brand Building,,2022-09-28 19:45:20,,,,,,,G2 +1183,Joe Cronin,jcronin@connectleader.com,jcronin@connectleader.com,The Review Rundown,,2022-09-28 19:44:55,,,,,,,G2 +1184,Joe Cronin,jcronin@connectleader.com,jcronin@connectleader.com,Profile Performance & Lead Management,,2022-09-28 19:44:55,,,,,,,G2 +1185,Joe Cronin,jcronin@connectleader.com,jcronin@connectleader.com,Review Tracking & Brand Building,,2022-09-28 19:44:55,,,,,,,G2 +1186,Joe Cronin,jcronin@connectleader.com,jcronin@connectleader.com,G2 Profile Anatomy,,2022-09-28 19:44:55,,,,,,,G2 +1187,Rob Ayre,rob.ayre@influitive.com,rob.ayre@influitive.com,G2 Profile Anatomy,,2022-09-28 19:44:40,,,,,,,G2 +1188,Rob Ayre,rob.ayre@influitive.com,rob.ayre@influitive.com,Profile Performance & Lead Management,,2022-09-28 19:44:40,,,,,,,G2 +1189,Rob Ayre,rob.ayre@influitive.com,rob.ayre@influitive.com,The Review Rundown,LIVE,2022-09-28 19:44:40,2022-09-28 19:45:20,,1,14%,What are Reviews?,2022-09-28 19:47:31,G2 +1190,Rob Ayre,rob.ayre@influitive.com,rob.ayre@influitive.com,Review Tracking & Brand Building,,2022-09-28 19:44:40,,,,,,,G2 +1191,Christina Kay,christina.kay@resellerratings.com,christina.kay@resellerratings.com,Preparing for G2 Reports,LIVE,2022-09-28 19:43:29,2022-09-28 19:43:29,,1,7%,Report Calendar + Actions Required,2022-09-28 19:43:38,G2 +1192,George Harris,harrisgo@miamioh.edu,harrisgo@miamioh.edu,G2 Profile Anatomy,20,2022-09-28 19:42:52,2022-09-28 19:42:58,,1,0%,,,G2 +1193,George Harris,harrisgo@miamioh.edu,harrisgo@miamioh.edu,The Review Rundown,,2022-09-28 19:42:52,,,,,,,G2 +1194,George Harris,harrisgo@miamioh.edu,harrisgo@miamioh.edu,Profile Performance & Lead Management,,2022-09-28 19:42:52,,,,,,,G2 +1195,George Harris,harrisgo@miamioh.edu,harrisgo@miamioh.edu,Review Tracking & Brand Building,,2022-09-28 19:42:52,,,,,,,G2 +1196,Kassia Chatting,kassia@learnerbly.com,kassia@learnerbly.com,Review Tracking & Brand Building,,2022-09-28 19:42:46,,,,,,,G2 +1197,Kassia Chatting,kassia@learnerbly.com,kassia@learnerbly.com,Profile Performance & Lead Management,,2022-09-28 19:42:46,,,,,,,G2 +1198,Kassia Chatting,kassia@learnerbly.com,kassia@learnerbly.com,G2 Profile Anatomy,,2022-09-28 19:42:46,,,,,,,G2 +1199,Kassia Chatting,kassia@learnerbly.com,kassia@learnerbly.com,The Review Rundown,,2022-09-28 19:42:46,,,,,,,G2 +1200,Kim Castelluccio,kim.castelluccio@blackbaud.com,kim.castelluccio@blackbaud.com,The Review Rundown,,2022-09-28 19:42:11,,,,,,,G2 +1201,Kim Castelluccio,kim.castelluccio@blackbaud.com,kim.castelluccio@blackbaud.com,Profile Performance & Lead Management,,2022-09-28 19:42:11,,,,,,,G2 +1202,Kim Castelluccio,kim.castelluccio@blackbaud.com,kim.castelluccio@blackbaud.com,G2 Profile Anatomy,,2022-09-28 19:42:11,,,,,,,G2 +1203,Kim Castelluccio,kim.castelluccio@blackbaud.com,kim.castelluccio@blackbaud.com,Review Tracking & Brand Building,,2022-09-28 19:42:11,,,,,,,G2 +1204,Alec Schwartz,aschwartz@g2.com,aschwartz@g2.com,The Review Rundown,,2022-09-28 19:42:06,,,,,,,G2 +1205,Alec Schwartz,aschwartz@g2.com,aschwartz@g2.com,G2 Profile Anatomy,,2022-09-28 19:42:06,,,,,,,G2 +1206,Alec Schwartz,aschwartz@g2.com,aschwartz@g2.com,Profile Performance & Lead Management,,2022-09-28 19:42:06,,,,,,,G2 +1207,Alec Schwartz,aschwartz@g2.com,aschwartz@g2.com,Review Tracking & Brand Building,,2022-09-28 19:42:06,,,,,,,G2 +1208,Kacey Davidson,kacey.davidson@skilljar.com,kacey.davidson@skilljar.com,Review Tracking & Brand Building,,2022-09-28 19:40:05,,,,,,,G2 +1209,Kacey Davidson,kacey.davidson@skilljar.com,kacey.davidson@skilljar.com,The Review Rundown,LIVE,2022-09-28 19:40:05,2022-09-28 19:40:12,,1,14%,What are Reviews?,2022-09-28 19:40:23,G2 +1210,Kacey Davidson,kacey.davidson@skilljar.com,kacey.davidson@skilljar.com,Profile Performance & Lead Management,,2022-09-28 19:40:05,,,,,,,G2 +1211,Kacey Davidson,kacey.davidson@skilljar.com,kacey.davidson@skilljar.com,G2 Profile Anatomy,,2022-09-28 19:40:05,,,,,,,G2 +1212,Scott Heinemann,scott.heinemann@skilljar.com,scott.heinemann@skilljar.com,Profile Performance & Lead Management,,2022-09-28 19:39:30,,,,,,,G2 +1213,Scott Heinemann,scott.heinemann@skilljar.com,scott.heinemann@skilljar.com,The Review Rundown,,2022-09-28 19:39:30,,,,,,,G2 +1214,Scott Heinemann,scott.heinemann@skilljar.com,scott.heinemann@skilljar.com,G2 Profile Anatomy,20,2022-09-28 19:39:30,2022-09-28 19:39:57,,1,0%,,,G2 +1215,Scott Heinemann,scott.heinemann@skilljar.com,scott.heinemann@skilljar.com,Review Tracking & Brand Building,,2022-09-28 19:39:30,,,,,,,G2 +1216,Christina Kay,christina.kay@resellerratings.com,christina.kay@resellerratings.com,The Review Rundown,,2022-09-28 19:39:06,,,,,,,G2 +1217,Christina Kay,christina.kay@resellerratings.com,christina.kay@resellerratings.com,G2 Profile Anatomy,,2022-09-28 19:39:06,,,,,,,G2 +1218,Christina Kay,christina.kay@resellerratings.com,christina.kay@resellerratings.com,Review Tracking & Brand Building,,2022-09-28 19:39:06,,,,,,,G2 +1219,Christina Kay,christina.kay@resellerratings.com,christina.kay@resellerratings.com,Profile Performance & Lead Management,,2022-09-28 19:39:06,,,,,,,G2 +1220,Olivia Klank,oklank@g2.com,oklank@g2.com,The Review Rundown,,2022-09-28 19:38:14,,,,,,,G2 +1221,Olivia Klank,oklank@g2.com,oklank@g2.com,Review Tracking & Brand Building,,2022-09-28 19:38:14,,,,,,,G2 +1222,Olivia Klank,oklank@g2.com,oklank@g2.com,G2 Profile Anatomy,20,2022-09-28 19:38:14,2022-09-28 19:39:31,,1,0%,,,G2 +1223,Olivia Klank,oklank@g2.com,oklank@g2.com,Profile Performance & Lead Management,,2022-09-28 19:38:14,,,,,,,G2 +1224,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,How to Use Buyer Intent,LIVE,2022-09-28 19:37:45,2022-09-28 21:42:43,,2,73%,Prevent Churn and Improve Expansion,2022-09-28 21:44:42,G2 +1225,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,How to Use Buyer Intent,LIVE,2022-09-28 19:37:45,2022-09-28 19:37:45,2022-09-28 19:51:59,1,100%,Buyer Intent Score Filter Recommendations,2022-09-28 19:51:59,G2 +1226,Lou Krsnich,lkrsnich@g2crowd.com,lkrsnich@g2crowd.com,The Review Rundown,LIVE,2022-09-28 19:36:57,2022-10-04 20:57:45,,1,86%,Review Submission,2022-10-04 20:58:33,G2 +1227,Lou Krsnich,lkrsnich@g2crowd.com,lkrsnich@g2crowd.com,G2 Profile Anatomy,20,2022-09-28 19:36:57,2022-10-04 20:57:36,,1,0%,,,G2 +1228,Lou Krsnich,lkrsnich@g2crowd.com,lkrsnich@g2crowd.com,Profile Performance & Lead Management,,2022-09-28 19:36:57,,,,,,,G2 +1229,Lou Krsnich,lkrsnich@g2crowd.com,lkrsnich@g2crowd.com,Review Tracking & Brand Building,,2022-09-28 19:36:57,,,,,,,G2 +1230,Caitlin Shanly,cshanly@techtarget.com,cshanly@techtarget.com,The Review Rundown,,2022-09-28 19:36:20,,,,,,,G2 +1231,Caitlin Shanly,cshanly@techtarget.com,cshanly@techtarget.com,G2 Profile Anatomy,,2022-09-28 19:36:20,,,,,,,G2 +1232,Caitlin Shanly,cshanly@techtarget.com,cshanly@techtarget.com,Profile Performance & Lead Management,,2022-09-28 19:36:20,,,,,,,G2 +1233,Caitlin Shanly,cshanly@techtarget.com,cshanly@techtarget.com,Review Tracking & Brand Building,,2022-09-28 19:36:20,,,,,,,G2 +1234,Chris Otten,chris.otten@vbrick.com,chris.otten@vbrick.com,Review Tracking & Brand Building,,2022-09-28 19:36:01,,,,,,,G2 +1235,Chris Otten,chris.otten@vbrick.com,chris.otten@vbrick.com,G2 Profile Anatomy,,2022-09-28 19:36:01,,,,,,,G2 +1236,Chris Otten,chris.otten@vbrick.com,chris.otten@vbrick.com,The Review Rundown,,2022-09-28 19:36:01,,,,,,,G2 +1237,Chris Otten,chris.otten@vbrick.com,chris.otten@vbrick.com,Profile Performance & Lead Management,,2022-09-28 19:36:01,,,,,,,G2 +1238,Rachel Stauffer,rstauffer@hawksoft.com,rstauffer@hawksoft.com,How to Respond to Reviews,LIVE,2022-09-28 19:34:36,2022-09-28 19:34:37,,1,67%,Formulating a Response,2022-09-28 19:40:24,G2 +1239,Rachel Stauffer,rstauffer@hawksoft.com,rstauffer@hawksoft.com,Review Tracking & Brand Building,,2022-09-28 19:33:04,,,,,,,G2 +1240,Rachel Stauffer,rstauffer@hawksoft.com,rstauffer@hawksoft.com,Profile Performance & Lead Management,,2022-09-28 19:33:04,,,,,,,G2 +1241,Rachel Stauffer,rstauffer@hawksoft.com,rstauffer@hawksoft.com,The Review Rundown,LIVE,2022-09-28 19:33:04,2022-09-28 19:33:51,,1,0%,,,G2 +1242,Rachel Stauffer,rstauffer@hawksoft.com,rstauffer@hawksoft.com,G2 Profile Anatomy,,2022-09-28 19:33:04,,,,,,,G2 +1243,Dan Candido,dan.candido@interfacing.com,dan.candido@interfacing.com,G2 Profile Anatomy,20,2022-09-28 19:32:19,2022-09-28 19:36:57,,1,0%,,,G2 +1244,Dan Candido,dan.candido@interfacing.com,dan.candido@interfacing.com,Profile Performance & Lead Management,,2022-09-28 19:32:19,,,,,,,G2 +1245,Dan Candido,dan.candido@interfacing.com,dan.candido@interfacing.com,Review Tracking & Brand Building,,2022-09-28 19:32:19,,,,,,,G2 +1246,Dan Candido,dan.candido@interfacing.com,dan.candido@interfacing.com,The Review Rundown,,2022-09-28 19:32:19,,,,,,,G2 +1247,Jim Volpe,james.volpe@memsource.com,james.volpe@memsource.com,Profile Performance & Lead Management,,2022-09-28 19:32:16,,,,,,,G2 +1248,Jim Volpe,james.volpe@memsource.com,james.volpe@memsource.com,G2 Profile Anatomy,,2022-09-28 19:32:16,,,,,,,G2 +1249,Jim Volpe,james.volpe@memsource.com,james.volpe@memsource.com,The Review Rundown,,2022-09-28 19:32:16,,,,,,,G2 +1250,Jim Volpe,james.volpe@memsource.com,james.volpe@memsource.com,Review Tracking & Brand Building,,2022-09-28 19:32:16,,,,,,,G2 +1251,Anna Muth,anna.muth@uberall.com,anna.muth@uberall.com,The Review Rundown,,2022-09-28 19:28:58,,,,,,,G2 +1252,Anna Muth,anna.muth@uberall.com,anna.muth@uberall.com,Review Tracking & Brand Building,,2022-09-28 19:28:58,,,,,,,G2 +1253,Anna Muth,anna.muth@uberall.com,anna.muth@uberall.com,Profile Performance & Lead Management,LIVE,2022-09-28 19:28:58,2022-09-28 19:29:13,,1,0%,,,G2 +1254,Anna Muth,anna.muth@uberall.com,anna.muth@uberall.com,G2 Profile Anatomy,,2022-09-28 19:28:58,,,,,,,G2 +1255,Seth Kekessie,skekessie@apriori.com,skekessie@apriori.com,Profile Performance & Lead Management,,2022-09-28 19:28:09,,,,,,,G2 +1256,Seth Kekessie,skekessie@apriori.com,skekessie@apriori.com,Review Tracking & Brand Building,,2022-09-28 19:28:09,,,,,,,G2 +1257,Seth Kekessie,skekessie@apriori.com,skekessie@apriori.com,G2 Profile Anatomy,,2022-09-28 19:28:09,,,,,,,G2 +1258,Seth Kekessie,skekessie@apriori.com,skekessie@apriori.com,The Review Rundown,,2022-09-28 19:28:09,,,,,,,G2 +1259,Jenna Van De Velde,jvandevelde@invoca.com,jvandevelde@invoca.com,Buyer Intent Basics,5,2022-09-28 19:27:42,2022-09-28 19:27:42,,1,0%,,,G2 +1260,Mike Cline,mcline@processbolt.com,mcline@processbolt.com,Profile Performance & Lead Management,,2022-09-28 19:27:41,,,,,,,G2 +1261,Mike Cline,mcline@processbolt.com,mcline@processbolt.com,Review Tracking & Brand Building,,2022-09-28 19:27:41,,,,,,,G2 +1262,Mike Cline,mcline@processbolt.com,mcline@processbolt.com,The Review Rundown,,2022-09-28 19:27:41,,,,,,,G2 +1263,Mike Cline,mcline@processbolt.com,mcline@processbolt.com,G2 Profile Anatomy,,2022-09-28 19:27:41,,,,,,,G2 +1264,Jenna Van De Velde,jvandevelde@invoca.com,jvandevelde@invoca.com,Profile Performance & Lead Management,,2022-09-28 19:27:22,,,,,,,G2 +1265,Jenna Van De Velde,jvandevelde@invoca.com,jvandevelde@invoca.com,Review Tracking & Brand Building,,2022-09-28 19:27:22,,,,,,,G2 +1266,Jenna Van De Velde,jvandevelde@invoca.com,jvandevelde@invoca.com,The Review Rundown,,2022-09-28 19:27:22,,,,,,,G2 +1267,Jenna Van De Velde,jvandevelde@invoca.com,jvandevelde@invoca.com,G2 Profile Anatomy,,2022-09-28 19:27:22,,,,,,,G2 +1268,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,Buyer Intent Basics,LIVE,2022-09-28 19:27:08,2022-09-28 23:31:44,,2,0%,,2022-09-28 23:31:44,G2 +1269,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,Buyer Intent Basics,5,2022-09-28 19:27:08,2022-09-28 19:27:09,2022-09-28 19:37:02,1,100%,Integrations,2022-09-28 19:37:02,G2 +1270,Adam Kranitz,adam.kranitz@lucidlink.com,adam.kranitz@lucidlink.com,Review Tracking & Brand Building,,2022-09-28 19:26:44,,,,,,,G2 +1271,Adam Kranitz,adam.kranitz@lucidlink.com,adam.kranitz@lucidlink.com,G2 Profile Anatomy,,2022-09-28 19:26:44,,,,,,,G2 +1272,Adam Kranitz,adam.kranitz@lucidlink.com,adam.kranitz@lucidlink.com,Profile Performance & Lead Management,,2022-09-28 19:26:44,,,,,,,G2 +1273,Adam Kranitz,adam.kranitz@lucidlink.com,adam.kranitz@lucidlink.com,The Review Rundown,,2022-09-28 19:26:44,,,,,,,G2 +1274,Park Groves,park@tremendous.com,park@tremendous.com,G2 Profile Anatomy,,2022-09-28 19:26:08,,,,,,,G2 +1275,Park Groves,park@tremendous.com,park@tremendous.com,Review Tracking & Brand Building,,2022-09-28 19:26:08,,,,,,,G2 +1276,Park Groves,park@tremendous.com,park@tremendous.com,Profile Performance & Lead Management,,2022-09-28 19:26:08,,,,,,,G2 +1277,Park Groves,park@tremendous.com,park@tremendous.com,The Review Rundown,,2022-09-28 19:26:08,,,,,,,G2 +1278,Jonathan Goldberg,jonathan.goldberg@similarweb.com,jonathan.goldberg@similarweb.com,The Review Rundown,LIVE,2022-09-28 19:26:04,2022-09-28 19:38:57,,1,0%,,,G2 +1279,Jonathan Goldberg,jonathan.goldberg@similarweb.com,jonathan.goldberg@similarweb.com,Profile Performance & Lead Management,,2022-09-28 19:26:04,,,,,,,G2 +1280,Jonathan Goldberg,jonathan.goldberg@similarweb.com,jonathan.goldberg@similarweb.com,G2 Profile Anatomy,20,2022-09-28 19:26:04,2022-09-28 19:38:45,,1,0%,,,G2 +1281,Jonathan Goldberg,jonathan.goldberg@similarweb.com,jonathan.goldberg@similarweb.com,Review Tracking & Brand Building,,2022-09-28 19:26:04,,,,,,,G2 +1282,Gilad Salamander,tal.mikaelovich@eclincher.com,tal.mikaelovich@eclincher.com,G2 Profile Anatomy,,2022-09-28 19:25:01,,,,,,,G2 +1283,Gilad Salamander,tal.mikaelovich@eclincher.com,tal.mikaelovich@eclincher.com,Review Tracking & Brand Building,,2022-09-28 19:25:01,,,,,,,G2 +1284,Gilad Salamander,tal.mikaelovich@eclincher.com,tal.mikaelovich@eclincher.com,Profile Performance & Lead Management,,2022-09-28 19:25:01,,,,,,,G2 +1285,Gilad Salamander,tal.mikaelovich@eclincher.com,tal.mikaelovich@eclincher.com,The Review Rundown,,2022-09-28 19:25:01,,,,,,,G2 +1286,Carla Piccini,carla@trackingtime.co,carla@trackingtime.co,The Review Rundown,,2022-09-28 19:24:36,,,,,,,G2 +1287,Carla Piccini,carla@trackingtime.co,carla@trackingtime.co,Profile Performance & Lead Management,,2022-09-28 19:24:36,,,,,,,G2 +1288,Carla Piccini,carla@trackingtime.co,carla@trackingtime.co,G2 Profile Anatomy,,2022-09-28 19:24:36,,,,,,,G2 +1289,Carla Piccini,carla@trackingtime.co,carla@trackingtime.co,Review Tracking & Brand Building,,2022-09-28 19:24:36,,,,,,,G2 +1290,Lacey Weber,lacey.weber@helpsystems.com,lacey.weber@helpsystems.com,Profile Performance & Lead Management,,2022-09-28 19:23:51,,,,,,,G2 +1291,Lacey Weber,lacey.weber@helpsystems.com,lacey.weber@helpsystems.com,Review Tracking & Brand Building,,2022-09-28 19:23:51,,,,,,,G2 +1292,Lacey Weber,lacey.weber@helpsystems.com,lacey.weber@helpsystems.com,The Review Rundown,,2022-09-28 19:23:51,,,,,,,G2 +1293,Lacey Weber,lacey.weber@helpsystems.com,lacey.weber@helpsystems.com,G2 Profile Anatomy,,2022-09-28 19:23:51,,,,,,,G2 +1294,Lena Vu,lena.vu@thruinc.com,lena.vu@thruinc.com,The Review Rundown,,2022-09-28 19:23:20,,,,,,,G2 +1295,Lena Vu,lena.vu@thruinc.com,lena.vu@thruinc.com,G2 Profile Anatomy,,2022-09-28 19:23:20,,,,,,,G2 +1296,Lena Vu,lena.vu@thruinc.com,lena.vu@thruinc.com,Review Tracking & Brand Building,,2022-09-28 19:23:20,,,,,,,G2 +1297,Lena Vu,lena.vu@thruinc.com,lena.vu@thruinc.com,Profile Performance & Lead Management,,2022-09-28 19:23:20,,,,,,,G2 +1298,emma muldoon,emma.muldoon@fiixsoftware.com,emma.muldoon@fiixsoftware.com,G2 Profile Anatomy,,2022-09-28 19:22:58,,,,,,,G2 +1299,emma muldoon,emma.muldoon@fiixsoftware.com,emma.muldoon@fiixsoftware.com,Review Tracking & Brand Building,,2022-09-28 19:22:58,,,,,,,G2 +1300,emma muldoon,emma.muldoon@fiixsoftware.com,emma.muldoon@fiixsoftware.com,Profile Performance & Lead Management,,2022-09-28 19:22:58,,,,,,,G2 +1301,emma muldoon,emma.muldoon@fiixsoftware.com,emma.muldoon@fiixsoftware.com,The Review Rundown,,2022-09-28 19:22:58,,,,,,,G2 +1302,Rachel Ward,rward@allbound.com,rward@allbound.com,G2 Profile Anatomy,,2022-09-28 19:22:56,,,,,,,G2 +1303,Rachel Ward,rward@allbound.com,rward@allbound.com,Review Tracking & Brand Building,,2022-09-28 19:22:56,,,,,,,G2 +1304,Rachel Ward,rward@allbound.com,rward@allbound.com,The Review Rundown,,2022-09-28 19:22:56,,,,,,,G2 +1305,Rachel Ward,rward@allbound.com,rward@allbound.com,Profile Performance & Lead Management,,2022-09-28 19:22:56,,,,,,,G2 +1306,Bill Rubacky,bill@hellobaton.com,bill@hellobaton.com,Review Tracking & Brand Building,,2022-09-28 19:22:54,,,,,,,G2 +1307,Bill Rubacky,bill@hellobaton.com,bill@hellobaton.com,G2 Profile Anatomy,,2022-09-28 19:22:54,,,,,,,G2 +1308,Bill Rubacky,bill@hellobaton.com,bill@hellobaton.com,Profile Performance & Lead Management,,2022-09-28 19:22:54,,,,,,,G2 +1309,Bill Rubacky,bill@hellobaton.com,bill@hellobaton.com,The Review Rundown,,2022-09-28 19:22:54,,,,,,,G2 +1310,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,What is the G2 Content Subscription?,9,2022-09-28 19:21:20,2022-09-28 19:21:21,2022-09-28 19:26:15,1,100%,Infographics,2022-09-28 19:26:15,G2 +1311,Merve Erdogmus,merdogmus@xmatters.com,merdogmus@xmatters.com,Review Tracking & Brand Building,,2022-09-28 19:20:04,,,,,,,G2 +1312,Merve Erdogmus,merdogmus@xmatters.com,merdogmus@xmatters.com,The Review Rundown,LIVE,2022-09-28 19:20:04,2022-09-28 19:20:25,,1,0%,,,G2 +1313,Merve Erdogmus,merdogmus@xmatters.com,merdogmus@xmatters.com,Profile Performance & Lead Management,,2022-09-28 19:20:04,,,,,,,G2 +1314,Merve Erdogmus,merdogmus@xmatters.com,merdogmus@xmatters.com,G2 Profile Anatomy,,2022-09-28 19:20:04,,,,,,,G2 +1315,Elvia Ramírez,eramirez@globalization-partners.com,eramirez@globalization-partners.com,Profile Performance & Lead Management,,2022-09-28 19:18:49,,,,,,,G2 +1316,Elvia Ramírez,eramirez@globalization-partners.com,eramirez@globalization-partners.com,G2 Profile Anatomy,20,2022-09-28 19:18:49,2022-09-28 19:20:54,,1,0%,,,G2 +1317,Elvia Ramírez,eramirez@globalization-partners.com,eramirez@globalization-partners.com,G2 Profile Anatomy,LIVE,2022-09-28 19:18:49,2022-11-09 22:02:50,2022-11-09 23:02:17,2,100%,G2 Provided Content,2022-11-09 23:02:17,G2 +1318,Elvia Ramírez,eramirez@globalization-partners.com,eramirez@globalization-partners.com,Review Tracking & Brand Building,,2022-09-28 19:18:49,,,,,,,G2 +1319,Elvia Ramírez,eramirez@globalization-partners.com,eramirez@globalization-partners.com,The Review Rundown,,2022-09-28 19:18:49,,,,,,,G2 +1320,Sam Mayer,sam.mayer@docusign.com,sam.mayer@docusign.com,Review Tracking & Brand Building,,2022-09-28 19:18:24,,,,,,,G2 +1321,Sam Mayer,sam.mayer@docusign.com,sam.mayer@docusign.com,G2 Profile Anatomy,,2022-09-28 19:18:24,,,,,,,G2 +1322,Sam Mayer,sam.mayer@docusign.com,sam.mayer@docusign.com,The Review Rundown,,2022-09-28 19:18:24,,,,,,,G2 +1323,Sam Mayer,sam.mayer@docusign.com,sam.mayer@docusign.com,Profile Performance & Lead Management,,2022-09-28 19:18:24,,,,,,,G2 +1324,Jeremy Painkin,jeremy.painkin@cascade.app,jeremy.painkin@cascade.app,Profile Performance & Lead Management,,2022-09-28 19:17:37,,,,,,,G2 +1325,Jeremy Painkin,jeremy.painkin@cascade.app,jeremy.painkin@cascade.app,G2 Profile Anatomy,,2022-09-28 19:17:37,,,,,,,G2 +1326,Jeremy Painkin,jeremy.painkin@cascade.app,jeremy.painkin@cascade.app,The Review Rundown,,2022-09-28 19:17:37,,,,,,,G2 +1327,Jeremy Painkin,jeremy.painkin@cascade.app,jeremy.painkin@cascade.app,Review Tracking & Brand Building,,2022-09-28 19:17:37,,,,,,,G2 +1328,Claudine Ting,claudine.ting@getmaintainx.com,claudine.ting@getmaintainx.com,The Review Rundown,LIVE,2022-09-28 19:17:27,2022-09-28 20:45:26,,1,0%,,,G2 +1329,Claudine Ting,claudine.ting@getmaintainx.com,claudine.ting@getmaintainx.com,Review Tracking & Brand Building,,2022-09-28 19:17:27,,,,,,,G2 +1330,Claudine Ting,claudine.ting@getmaintainx.com,claudine.ting@getmaintainx.com,G2 Profile Anatomy,,2022-09-28 19:17:27,,,,,,,G2 +1331,Claudine Ting,claudine.ting@getmaintainx.com,claudine.ting@getmaintainx.com,Profile Performance & Lead Management,,2022-09-28 19:17:27,,,,,,,G2 +1332,Amanda Foster,amanda@spotio.com,amanda@spotio.com,Review Tracking & Brand Building,,2022-09-28 19:17:22,,,,,,,G2 +1333,Amanda Foster,amanda@spotio.com,amanda@spotio.com,The Review Rundown,,2022-09-28 19:17:22,,,,,,,G2 +1334,Amanda Foster,amanda@spotio.com,amanda@spotio.com,G2 Profile Anatomy,,2022-09-28 19:17:22,,,,,,,G2 +1335,Amanda Foster,amanda@spotio.com,amanda@spotio.com,Profile Performance & Lead Management,,2022-09-28 19:17:22,,,,,,,G2 +1336,Christian Beatty,christian@spotio.com,christian@spotio.com,Review Tracking & Brand Building,,2022-09-28 19:17:21,,,,,,,G2 +1337,Christian Beatty,christian@spotio.com,christian@spotio.com,Profile Performance & Lead Management,,2022-09-28 19:17:21,,,,,,,G2 +1338,Christian Beatty,christian@spotio.com,christian@spotio.com,G2 Profile Anatomy,20,2022-09-28 19:17:21,2022-09-28 19:17:27,,1,0%,,,G2 +1339,Christian Beatty,christian@spotio.com,christian@spotio.com,The Review Rundown,,2022-09-28 19:17:21,,,,,,,G2 +1340,Evan Dunn,evan@syncari.com,evan@syncari.com,Profile Performance & Lead Management,,2022-09-28 19:16:56,,,,,,,G2 +1341,Evan Dunn,evan@syncari.com,evan@syncari.com,The Review Rundown,,2022-09-28 19:16:56,,,,,,,G2 +1342,Evan Dunn,evan@syncari.com,evan@syncari.com,Review Tracking & Brand Building,,2022-09-28 19:16:56,,,,,,,G2 +1343,Evan Dunn,evan@syncari.com,evan@syncari.com,G2 Profile Anatomy,,2022-09-28 19:16:56,,,,,,,G2 +1344,Earl Lacey,earl.lacey@myresman.com,earl.lacey@myresman.com,The Review Rundown,,2022-09-28 19:16:29,,,,,,,G2 +1345,Earl Lacey,earl.lacey@myresman.com,earl.lacey@myresman.com,Profile Performance & Lead Management,,2022-09-28 19:16:29,,,,,,,G2 +1346,Earl Lacey,earl.lacey@myresman.com,earl.lacey@myresman.com,G2 Profile Anatomy,,2022-09-28 19:16:29,,,,,,,G2 +1347,Earl Lacey,earl.lacey@myresman.com,earl.lacey@myresman.com,Review Tracking & Brand Building,,2022-09-28 19:16:29,,,,,,,G2 +1348,Jamison Moore,jamison@spotio.com,jamison@spotio.com,Profile Performance & Lead Management,,2022-09-28 19:16:02,,,,,,,G2 +1349,Jamison Moore,jamison@spotio.com,jamison@spotio.com,Review Tracking & Brand Building,,2022-09-28 19:16:02,,,,,,,G2 +1350,Jamison Moore,jamison@spotio.com,jamison@spotio.com,The Review Rundown,,2022-09-28 19:16:02,,,,,,,G2 +1351,Jamison Moore,jamison@spotio.com,jamison@spotio.com,G2 Profile Anatomy,,2022-09-28 19:16:02,,,,,,,G2 +1352,Grayden Knoll,gknoll@relias.com,gknoll@relias.com,G2 Profile Anatomy,,2022-09-28 19:15:52,,,,,,,G2 +1353,Grayden Knoll,gknoll@relias.com,gknoll@relias.com,The Review Rundown,,2022-09-28 19:15:52,,,,,,,G2 +1354,Grayden Knoll,gknoll@relias.com,gknoll@relias.com,Review Tracking & Brand Building,,2022-09-28 19:15:52,,,,,,,G2 +1355,Grayden Knoll,gknoll@relias.com,gknoll@relias.com,Profile Performance & Lead Management,,2022-09-28 19:15:52,,,,,,,G2 +1356,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,Buyer Intent Basics,5,2022-09-28 19:14:45,2022-09-28 19:14:45,,1,17%,What is Buyer Intent and why is it beneficial?,2022-09-28 19:14:59,G2 +1357,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,G2 Profile Anatomy,,2022-09-28 19:14:10,,,,,,,G2 +1358,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,Profile Performance & Lead Management,,2022-09-28 19:14:10,,,,,,,G2 +1359,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,The Review Rundown,,2022-09-28 19:14:10,,,,,,,G2 +1360,Zoey Morck,zoey.morck@logz.io,zoey.morck@logz.io,Review Tracking & Brand Building,,2022-09-28 19:14:10,,,,,,,G2 +1361,Andira Fara,demgen@arcfacilities.com,demgen@arcfacilities.com,G2 Profile Anatomy,,2022-09-28 19:13:48,,,,,,,G2 +1362,Andira Fara,demgen@arcfacilities.com,demgen@arcfacilities.com,The Review Rundown,,2022-09-28 19:13:48,,,,,,,G2 +1363,Andira Fara,demgen@arcfacilities.com,demgen@arcfacilities.com,Profile Performance & Lead Management,,2022-09-28 19:13:48,,,,,,,G2 +1364,Andira Fara,demgen@arcfacilities.com,demgen@arcfacilities.com,Review Tracking & Brand Building,,2022-09-28 19:13:48,,,,,,,G2 +1365,Julia Poon,j.poon@method.me,j.poon@method.me,The Review Rundown,,2022-09-28 19:13:43,,,,,,,G2 +1366,Julia Poon,j.poon@method.me,j.poon@method.me,G2 Profile Anatomy,20,2022-09-28 19:13:43,2022-09-28 19:14:10,,1,0%,,,G2 +1367,Julia Poon,j.poon@method.me,j.poon@method.me,Profile Performance & Lead Management,,2022-09-28 19:13:43,,,,,,,G2 +1368,Julia Poon,j.poon@method.me,j.poon@method.me,Review Tracking & Brand Building,,2022-09-28 19:13:43,,,,,,,G2 +1369,Annalise Hartley,annalise@mentoringminds.com,annalise@mentoringminds.com,Review Tracking & Brand Building,,2022-09-28 19:13:23,,,,,,,G2 +1370,Annalise Hartley,annalise@mentoringminds.com,annalise@mentoringminds.com,Profile Performance & Lead Management,,2022-09-28 19:13:23,,,,,,,G2 +1371,Annalise Hartley,annalise@mentoringminds.com,annalise@mentoringminds.com,G2 Profile Anatomy,,2022-09-28 19:13:23,,,,,,,G2 +1372,Annalise Hartley,annalise@mentoringminds.com,annalise@mentoringminds.com,The Review Rundown,,2022-09-28 19:13:23,,,,,,,G2 +1373,Trey Hinsch,thinsch@g2.com,thinsch@g2.com,G2 Profile Anatomy,,2022-09-28 19:12:10,,,,,,,G2 +1374,Trey Hinsch,thinsch@g2.com,thinsch@g2.com,The Review Rundown,,2022-09-28 19:12:10,,,,,,,G2 +1375,Trey Hinsch,thinsch@g2.com,thinsch@g2.com,Review Tracking & Brand Building,,2022-09-28 19:12:10,,,,,,,G2 +1376,Trey Hinsch,thinsch@g2.com,thinsch@g2.com,Profile Performance & Lead Management,,2022-09-28 19:12:10,,,,,,,G2 +1377,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,G2 Profile Anatomy,,2022-09-28 19:11:46,,,,,,,G2 +1378,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,The Review Rundown,,2022-09-28 19:11:46,,,,,,,G2 +1379,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,Review Tracking & Brand Building,LIVE,2022-09-28 19:11:46,2022-09-28 19:20:30,,1,0%,,,G2 +1380,Polina Dvorkin,polina.dvorkin@baltosoftware.com,polina.dvorkin@baltosoftware.com,Profile Performance & Lead Management,LIVE,2022-09-28 19:11:46,2022-09-28 19:20:44,2022-09-28 20:29:00,1,100%,Lead Webhooks,2022-09-28 20:29:00,G2 +1381,Lauren McCutcheon,lmccutcheon@reputation.com,lmccutcheon@reputation.com,Review Tracking & Brand Building,,2022-09-28 19:11:44,,,,,,,G2 +1382,Lauren McCutcheon,lmccutcheon@reputation.com,lmccutcheon@reputation.com,G2 Profile Anatomy,,2022-09-28 19:11:44,,,,,,,G2 +1383,Lauren McCutcheon,lmccutcheon@reputation.com,lmccutcheon@reputation.com,The Review Rundown,,2022-09-28 19:11:44,,,,,,,G2 +1384,Lauren McCutcheon,lmccutcheon@reputation.com,lmccutcheon@reputation.com,Profile Performance & Lead Management,,2022-09-28 19:11:44,,,,,,,G2 +1385,Rebecca Laverty,rebecca.laverty@rallyware.com,rebecca.laverty@rallyware.com,Profile Performance & Lead Management,,2022-09-28 19:11:38,,,,,,,G2 +1386,Diego Gosmar,diego.gosmar@xcally.com,diego.gosmar@xcally.com,Profile Performance & Lead Management,,2022-09-28 19:11:38,,,,,,,G2 +1387,Rebecca Laverty,rebecca.laverty@rallyware.com,rebecca.laverty@rallyware.com,G2 Profile Anatomy,,2022-09-28 19:11:38,,,,,,,G2 +1388,Rebecca Laverty,rebecca.laverty@rallyware.com,rebecca.laverty@rallyware.com,Review Tracking & Brand Building,,2022-09-28 19:11:38,,,,,,,G2 +1389,Diego Gosmar,diego.gosmar@xcally.com,diego.gosmar@xcally.com,Review Tracking & Brand Building,,2022-09-28 19:11:38,,,,,,,G2 +1390,Diego Gosmar,diego.gosmar@xcally.com,diego.gosmar@xcally.com,G2 Profile Anatomy,,2022-09-28 19:11:38,,,,,,,G2 +1391,Rebecca Laverty,rebecca.laverty@rallyware.com,rebecca.laverty@rallyware.com,The Review Rundown,,2022-09-28 19:11:38,,,,,,,G2 +1392,Diego Gosmar,diego.gosmar@xcally.com,diego.gosmar@xcally.com,The Review Rundown,,2022-09-28 19:11:38,,,,,,,G2 +1393,Romina Balanzzino,romina.balanzzino@amplitude.com,romina.balanzzino@amplitude.com,How to Respond to Reviews,LIVE,2022-09-28 19:11:09,2022-09-28 19:11:10,2022-09-28 19:14:01,1,100%,Justified Negative Reviews,2022-09-28 19:14:01,G2 +1394,Ryan Mullin,rmullin@cleo.com,rmullin@cleo.com,Review Tracking & Brand Building,,2022-09-28 19:10:21,,,,,,,G2 +1395,Ryan Mullin,rmullin@cleo.com,rmullin@cleo.com,G2 Profile Anatomy,,2022-09-28 19:10:21,,,,,,,G2 +1396,Ryan Mullin,rmullin@cleo.com,rmullin@cleo.com,Profile Performance & Lead Management,,2022-09-28 19:10:21,,,,,,,G2 +1397,Ryan Mullin,rmullin@cleo.com,rmullin@cleo.com,The Review Rundown,,2022-09-28 19:10:21,,,,,,,G2 +1398,Carolyn Bradley,carolyn.bradley@skilljar.com,carolyn.bradley@skilljar.com,Profile Performance & Lead Management,,2022-09-28 19:10:20,,,,,,,G2 +1399,Carolyn Bradley,carolyn.bradley@skilljar.com,carolyn.bradley@skilljar.com,The Review Rundown,,2022-09-28 19:10:20,,,,,,,G2 +1400,Carolyn Bradley,carolyn.bradley@skilljar.com,carolyn.bradley@skilljar.com,G2 Profile Anatomy,,2022-09-28 19:10:20,,,,,,,G2 +1401,Carolyn Bradley,carolyn.bradley@skilljar.com,carolyn.bradley@skilljar.com,Review Tracking & Brand Building,LIVE,2022-09-28 19:10:20,2022-09-28 19:30:26,,1,0%,,,G2 +1402,Adrian Nestico,adrian.nestico@pendo.io,adrian.nestico@pendo.io,The Review Rundown,,2022-09-28 19:09:46,,,,,,,G2 +1403,Adrian Nestico,adrian.nestico@pendo.io,adrian.nestico@pendo.io,Profile Performance & Lead Management,,2022-09-28 19:09:46,,,,,,,G2 +1404,Adrian Nestico,adrian.nestico@pendo.io,adrian.nestico@pendo.io,Review Tracking & Brand Building,,2022-09-28 19:09:46,,,,,,,G2 +1405,Adrian Nestico,adrian.nestico@pendo.io,adrian.nestico@pendo.io,G2 Profile Anatomy,,2022-09-28 19:09:46,,,,,,,G2 +1406,Romina Balanzzino,romina.balanzzino@amplitude.com,romina.balanzzino@amplitude.com,The Review Rundown,LIVE,2022-09-28 19:09:28,2022-09-28 19:14:50,,1,14%,What are Reviews?,2022-09-28 19:15:13,G2 +1407,Romina Balanzzino,romina.balanzzino@amplitude.com,romina.balanzzino@amplitude.com,G2 Profile Anatomy,,2022-09-28 19:09:28,,,,,,,G2 +1408,Romina Balanzzino,romina.balanzzino@amplitude.com,romina.balanzzino@amplitude.com,Review Tracking & Brand Building,,2022-09-28 19:09:28,,,,,,,G2 +1409,Romina Balanzzino,romina.balanzzino@amplitude.com,romina.balanzzino@amplitude.com,Profile Performance & Lead Management,,2022-09-28 19:09:28,,,,,,,G2 +1410,Gina Carr,gcarr@g2.com,gcarr@g2.com,Profile Performance & Lead Management,LIVE,2022-09-28 19:09:23,2022-09-28 21:05:14,2022-09-28 21:05:49,1,100%,Lead Webhooks,2022-09-28 21:05:49,G2 +1411,Gina Carr,gcarr@g2.com,gcarr@g2.com,The Review Rundown,,2022-09-28 19:09:23,,,,,,,G2 +1412,Gina Carr,gcarr@g2.com,gcarr@g2.com,Review Tracking & Brand Building,,2022-09-28 19:09:23,,,,,,,G2 +1413,Gina Carr,gcarr@g2.com,gcarr@g2.com,G2 Profile Anatomy,,2022-09-28 19:09:23,,,,,,,G2 +1414,Mike Chantigian,mike.chantigian@zinfitech.com,mike.chantigian@zinfitech.com,Review Tracking & Brand Building,,2022-09-28 19:09:12,,,,,,,G2 +1415,Mike Chantigian,mike.chantigian@zinfitech.com,mike.chantigian@zinfitech.com,G2 Profile Anatomy,,2022-09-28 19:09:12,,,,,,,G2 +1416,Mike Chantigian,mike.chantigian@zinfitech.com,mike.chantigian@zinfitech.com,Profile Performance & Lead Management,,2022-09-28 19:09:12,,,,,,,G2 +1417,Mike Chantigian,mike.chantigian@zinfitech.com,mike.chantigian@zinfitech.com,The Review Rundown,,2022-09-28 19:09:12,,,,,,,G2 +1418,David Gales,david.gales@oysterhr.com,david.gales@oysterhr.com,Profile Performance & Lead Management,,2022-09-28 19:06:42,,,,,,,G2 +1419,David Gales,david.gales@oysterhr.com,david.gales@oysterhr.com,G2 Profile Anatomy,,2022-09-28 19:06:42,,,,,,,G2 +1420,David Gales,david.gales@oysterhr.com,david.gales@oysterhr.com,Review Tracking & Brand Building,,2022-09-28 19:06:42,,,,,,,G2 +1421,David Gales,david.gales@oysterhr.com,david.gales@oysterhr.com,The Review Rundown,,2022-09-28 19:06:42,,,,,,,G2 +1422,Justine Woo,justine@junipersquare.com,justine@junipersquare.com,The Review Rundown,,2022-09-28 19:05:42,,,,,,,G2 +1423,Justine Woo,justine@junipersquare.com,justine@junipersquare.com,Profile Performance & Lead Management,,2022-09-28 19:05:42,,,,,,,G2 +1424,Justine Woo,justine@junipersquare.com,justine@junipersquare.com,G2 Profile Anatomy,,2022-09-28 19:05:42,,,,,,,G2 +1425,Justine Woo,justine@junipersquare.com,justine@junipersquare.com,Review Tracking & Brand Building,,2022-09-28 19:05:42,,,,,,,G2 +1426,nada erradi,nada.e@uxpertise.ca,nada.e@uxpertise.ca,G2 Profile Anatomy,,2022-09-28 19:05:25,,,,,,,G2 +1427,nada erradi,nada.e@uxpertise.ca,nada.e@uxpertise.ca,The Review Rundown,,2022-09-28 19:05:25,,,,,,,G2 +1428,nada erradi,nada.e@uxpertise.ca,nada.e@uxpertise.ca,Review Tracking & Brand Building,,2022-09-28 19:05:25,,,,,,,G2 +1429,nada erradi,nada.e@uxpertise.ca,nada.e@uxpertise.ca,Profile Performance & Lead Management,,2022-09-28 19:05:25,,,,,,,G2 +1430,Mark Calcote,mark.calcote@infegy.com,mark.calcote@infegy.com,Profile Performance & Lead Management,,2022-09-28 19:05:11,,,,,,,G2 +1431,Mark Calcote,mark.calcote@infegy.com,mark.calcote@infegy.com,The Review Rundown,,2022-09-28 19:05:11,,,,,,,G2 +1432,Mark Calcote,mark.calcote@infegy.com,mark.calcote@infegy.com,Review Tracking & Brand Building,,2022-09-28 19:05:11,,,,,,,G2 +1433,Mark Calcote,mark.calcote@infegy.com,mark.calcote@infegy.com,G2 Profile Anatomy,,2022-09-28 19:05:11,,,,,,,G2 +1434,Mike Sabin,msabin@g2.com,msabin@g2.com,G2 Profile Anatomy,LIVE,2022-09-28 19:05:09,2022-11-15 18:18:51,,2,0%,,2022-11-15 18:18:51,G2 +1435,Mike Sabin,msabin@g2.com,msabin@g2.com,Profile Performance & Lead Management,,2022-09-28 19:05:09,,,,,,,G2 +1436,Mike Sabin,msabin@g2.com,msabin@g2.com,Review Tracking & Brand Building,,2022-09-28 19:05:09,,,,,,,G2 +1437,Mike Sabin,msabin@g2.com,msabin@g2.com,G2 Profile Anatomy,20,2022-09-28 19:05:09,2022-09-28 19:05:20,,1,0%,,,G2 +1438,Mike Sabin,msabin@g2.com,msabin@g2.com,The Review Rundown,,2022-09-28 19:05:09,,,,,,,G2 +1439,Ghianda Boykin,gboykin@axway.com,gboykin@axway.com,Review Tracking & Brand Building,,2022-09-28 19:04:45,,,,,,,G2 +1440,Ghianda Boykin,gboykin@axway.com,gboykin@axway.com,G2 Profile Anatomy,,2022-09-28 19:04:45,,,,,,,G2 +1441,Ghianda Boykin,gboykin@axway.com,gboykin@axway.com,The Review Rundown,LIVE,2022-09-28 19:04:45,2022-11-07 22:29:20,,1,0%,,,G2 +1442,Ghianda Boykin,gboykin@axway.com,gboykin@axway.com,Profile Performance & Lead Management,,2022-09-28 19:04:45,,,,,,,G2 +1443,Christian DIAL,christian.dial@n-able.com,christian.dial@n-able.com,Profile Performance & Lead Management,,2022-09-28 19:04:26,,,,,,,G2 +1444,Christian DIAL,christian.dial@n-able.com,christian.dial@n-able.com,The Review Rundown,,2022-09-28 19:04:26,,,,,,,G2 +1445,Christian DIAL,christian.dial@n-able.com,christian.dial@n-able.com,Review Tracking & Brand Building,,2022-09-28 19:04:26,,,,,,,G2 +1446,Christian DIAL,christian.dial@n-able.com,christian.dial@n-able.com,G2 Profile Anatomy,,2022-09-28 19:04:26,,,,,,,G2 +1447,Werda Shermeen Zia,werda@autoleap.com,werda@autoleap.com,G2 Profile Anatomy,,2022-09-28 19:01:37,,,,,,,G2 +1448,Werda Shermeen Zia,werda@autoleap.com,werda@autoleap.com,Review Tracking & Brand Building,,2022-09-28 19:01:37,,,,,,,G2 +1449,Werda Shermeen Zia,werda@autoleap.com,werda@autoleap.com,The Review Rundown,,2022-09-28 19:01:37,,,,,,,G2 +1450,Werda Shermeen Zia,werda@autoleap.com,werda@autoleap.com,Profile Performance & Lead Management,,2022-09-28 19:01:37,,,,,,,G2 +1451,Eliza Miller,emiller@directiveconsulting.com,emiller@directiveconsulting.com,The Review Rundown,,2022-09-28 18:52:24,,,,,,,G2 +1452,Eliza Miller,emiller@directiveconsulting.com,emiller@directiveconsulting.com,Review Tracking & Brand Building,,2022-09-28 18:52:24,,,,,,,G2 +1453,Eliza Miller,emiller@directiveconsulting.com,emiller@directiveconsulting.com,G2 Profile Anatomy,,2022-09-28 18:52:24,,,,,,,G2 +1454,Eliza Miller,emiller@directiveconsulting.com,emiller@directiveconsulting.com,Profile Performance & Lead Management,,2022-09-28 18:52:24,,,,,,,G2 +1455,Camille Stokes,cstokes@saasoptics.com,cstokes@saasoptics.com,G2 Profile Anatomy,20,2022-09-28 18:49:03,2022-09-28 18:49:12,,1,17%,What is the Value of a G2 Profile?,2022-09-29 14:32:33,G2 +1456,Camille Stokes,cstokes@saasoptics.com,cstokes@saasoptics.com,The Review Rundown,,2022-09-28 18:49:03,,,,,,,G2 +1457,Camille Stokes,cstokes@saasoptics.com,cstokes@saasoptics.com,Review Tracking & Brand Building,,2022-09-28 18:49:03,,,,,,,G2 +1458,Camille Stokes,cstokes@saasoptics.com,cstokes@saasoptics.com,Profile Performance & Lead Management,,2022-09-28 18:49:03,,,,,,,G2 +1459,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,Profile Performance & Lead Management,,2022-09-28 18:46:07,,,,,,,G2 +1460,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,The Review Rundown,,2022-09-28 18:46:07,,,,,,,G2 +1461,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,Review Tracking & Brand Building,,2022-09-28 18:46:07,,,,,,,G2 +1462,Sophie Kearney,sophie.kearney@contentsquare.com,sophie.kearney@contentsquare.com,G2 Profile Anatomy,,2022-09-28 18:46:07,,,,,,,G2 +1463,Tarun Arora,tarun.arora@workiva.com,tarun.arora@workiva.com,The Review Rundown,,2022-09-28 18:36:18,,,,,,,G2 +1464,Tarun Arora,tarun.arora@workiva.com,tarun.arora@workiva.com,Profile Performance & Lead Management,,2022-09-28 18:36:18,,,,,,,G2 +1465,Tarun Arora,tarun.arora@workiva.com,tarun.arora@workiva.com,G2 Profile Anatomy,,2022-09-28 18:36:18,,,,,,,G2 +1466,Tarun Arora,tarun.arora@workiva.com,tarun.arora@workiva.com,Review Tracking & Brand Building,,2022-09-28 18:36:18,,,,,,,G2 +1467,Liam Collins,liam@builder.ai,liam@builder.ai,G2 Profile Anatomy,,2022-09-28 18:27:02,,,,,,,G2 +1468,Liam Collins,liam@builder.ai,liam@builder.ai,The Review Rundown,,2022-09-28 18:27:02,,,,,,,G2 +1469,Liam Collins,liam@builder.ai,liam@builder.ai,Profile Performance & Lead Management,,2022-09-28 18:27:02,,,,,,,G2 +1470,Liam Collins,liam@builder.ai,liam@builder.ai,Review Tracking & Brand Building,,2022-09-28 18:27:02,,,,,,,G2 +1471,Caitlin Caswell,caitlin.caswell@gladly.com,caitlin.caswell@gladly.com,Review Tracking & Brand Building,,2022-09-28 18:23:52,,,,,,,G2 +1472,Caitlin Caswell,caitlin.caswell@gladly.com,caitlin.caswell@gladly.com,The Review Rundown,,2022-09-28 18:23:52,,,,,,,G2 +1473,Caitlin Caswell,caitlin.caswell@gladly.com,caitlin.caswell@gladly.com,Profile Performance & Lead Management,,2022-09-28 18:23:52,,,,,,,G2 +1474,Caitlin Caswell,caitlin.caswell@gladly.com,caitlin.caswell@gladly.com,G2 Profile Anatomy,,2022-09-28 18:23:52,,,,,,,G2 +1475,Nicole Tan,nicole@scratchpad.com,nicole@scratchpad.com,G2 Profile Anatomy,,2022-09-28 18:23:15,,,,,,,G2 +1476,Nicole Tan,nicole@scratchpad.com,nicole@scratchpad.com,Review Tracking & Brand Building,,2022-09-28 18:23:15,,,,,,,G2 +1477,Nicole Tan,nicole@scratchpad.com,nicole@scratchpad.com,Profile Performance & Lead Management,,2022-09-28 18:23:15,,,,,,,G2 +1478,Nicole Tan,nicole@scratchpad.com,nicole@scratchpad.com,The Review Rundown,,2022-09-28 18:23:15,,,,,,,G2 +1479,Christian Terry,christian@olive.app,christian@olive.app,How to Use Buyer Intent,LIVE,2022-09-28 18:22:59,2022-09-28 18:22:59,,1,0%,,,G2 +1480,Christian Terry,christian@olive.app,christian@olive.app,Profile Performance & Lead Management,LIVE,2022-09-28 18:22:27,2022-09-28 18:23:42,,1,0%,,,G2 +1481,Christian Terry,christian@olive.app,christian@olive.app,Review Tracking & Brand Building,,2022-09-28 18:22:27,,,,,,,G2 +1482,Christian Terry,christian@olive.app,christian@olive.app,The Review Rundown,,2022-09-28 18:22:27,,,,,,,G2 +1483,Christian Terry,christian@olive.app,christian@olive.app,G2 Profile Anatomy,,2022-09-28 18:22:27,,,,,,,G2 +1484,Samira McDonald,samira.mcdonald@akeneo.com,samira.mcdonald@akeneo.com,Review Tracking & Brand Building,,2022-09-28 18:16:45,,,,,,,G2 +1485,Samira McDonald,samira.mcdonald@akeneo.com,samira.mcdonald@akeneo.com,Profile Performance & Lead Management,,2022-09-28 18:16:45,,,,,,,G2 +1486,Samira McDonald,samira.mcdonald@akeneo.com,samira.mcdonald@akeneo.com,The Review Rundown,,2022-09-28 18:16:45,,,,,,,G2 +1487,Samira McDonald,samira.mcdonald@akeneo.com,samira.mcdonald@akeneo.com,G2 Profile Anatomy,20,2022-09-28 18:16:45,2022-09-28 18:16:57,,1,0%,,,G2 +1488,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,Profile Performance & Lead Management,,2022-09-28 18:14:51,,,,,,,G2 +1489,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,G2 Profile Anatomy,,2022-09-28 18:14:51,,,,,,,G2 +1490,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,The Review Rundown,LIVE,2022-09-28 18:14:51,2022-11-11 11:07:16,,1,0%,,,G2 +1491,Kalee Kapoor,kkapoor@g2.com,kkapoor@g2.com,Review Tracking & Brand Building,,2022-09-28 18:14:51,,,,,,,G2 +1492,Meg O'Hearn,megohearn@onesignal.com,megohearn@onesignal.com,G2 Profile Anatomy,20,2022-09-28 18:07:41,2022-09-28 18:08:12,,1,0%,,,G2 +1493,Meg O'Hearn,megohearn@onesignal.com,megohearn@onesignal.com,Review Tracking & Brand Building,,2022-09-28 18:07:41,,,,,,,G2 +1494,Meg O'Hearn,megohearn@onesignal.com,megohearn@onesignal.com,The Review Rundown,11,2022-09-28 18:07:41,2022-09-28 18:09:35,,1,0%,,,G2 +1495,Meg O'Hearn,megohearn@onesignal.com,megohearn@onesignal.com,Profile Performance & Lead Management,,2022-09-28 18:07:41,,,,,,,G2 +1496,Scott Winter,scheduleoncesynch@hapara.com,scheduleoncesynch@hapara.com,How to Use Buyer Intent,LIVE,2022-09-28 17:58:23,2022-09-28 17:58:23,,1,0%,,,G2 +1497,Scott Winter,scheduleoncesynch@hapara.com,scheduleoncesynch@hapara.com,G2 Profile Anatomy,,2022-09-28 17:57:44,,,,,,,G2 +1498,Scott Winter,scheduleoncesynch@hapara.com,scheduleoncesynch@hapara.com,Review Tracking & Brand Building,,2022-09-28 17:57:44,,,,,,,G2 +1499,Scott Winter,scheduleoncesynch@hapara.com,scheduleoncesynch@hapara.com,Profile Performance & Lead Management,,2022-09-28 17:57:44,,,,,,,G2 +1500,Scott Winter,scheduleoncesynch@hapara.com,scheduleoncesynch@hapara.com,The Review Rundown,,2022-09-28 17:57:44,,,,,,,G2 +1501,Jenny Jordan,jennifer@tremendous.com,jennifer@tremendous.com,The Review Rundown,,2022-09-28 17:57:08,,,,,,,G2 +1502,Jenny Jordan,jennifer@tremendous.com,jennifer@tremendous.com,Profile Performance & Lead Management,,2022-09-28 17:57:08,,,,,,,G2 +1503,Jenny Jordan,jennifer@tremendous.com,jennifer@tremendous.com,Review Tracking & Brand Building,,2022-09-28 17:57:08,,,,,,,G2 +1504,Jenny Jordan,jennifer@tremendous.com,jennifer@tremendous.com,G2 Profile Anatomy,,2022-09-28 17:57:08,,,,,,,G2 +1505,Danhel Fajardo,danhel.fajardo@goanimate.com,danhel.fajardo@goanimate.com,How to Respond to Reviews,LIVE,2022-09-28 17:52:47,2022-09-28 17:52:47,2022-09-29 18:58:02,1,100%,Justified Negative Reviews,2022-09-29 18:58:02,G2 +1506,Hannah Mathew,hannah@louassist.com,hannah@louassist.com,G2 Profile Anatomy,20,2022-09-28 17:51:46,2022-09-28 17:52:03,,1,0%,,,G2 +1507,Hannah Mathew,hannah@louassist.com,hannah@louassist.com,Review Tracking & Brand Building,LIVE,2022-09-28 17:51:46,2022-10-10 16:04:54,,1,0%,,,G2 +1508,Hannah Mathew,hannah@louassist.com,hannah@louassist.com,The Review Rundown,,2022-09-28 17:51:46,,,,,,,G2 +1509,Hannah Mathew,hannah@louassist.com,hannah@louassist.com,Profile Performance & Lead Management,,2022-09-28 17:51:46,,,,,,,G2 +1510,Katlin Hess,katlin.hess@gmail.com,katlin.hess@gmail.com,How to Use Buyer Intent,LIVE,2022-09-28 17:48:49,2022-09-28 17:48:50,,1,0%,,,G2 +1511,Alanna Jordan,alanna.jordan@altium.com,alanna.jordan@altium.com,G2 Profile Anatomy,,2022-09-28 17:34:53,,,,,,,G2 +1512,Alanna Jordan,alanna.jordan@altium.com,alanna.jordan@altium.com,The Review Rundown,,2022-09-28 17:34:53,,,,,,,G2 +1513,Alanna Jordan,alanna.jordan@altium.com,alanna.jordan@altium.com,Review Tracking & Brand Building,,2022-09-28 17:34:53,,,,,,,G2 +1514,Alanna Jordan,alanna.jordan@altium.com,alanna.jordan@altium.com,Profile Performance & Lead Management,,2022-09-28 17:34:53,,,,,,,G2 +1515,Rachel Rappaport,rachel.rappaport@bizzabo.com,rachel.rappaport@bizzabo.com,Profile Performance & Lead Management,,2022-09-28 17:34:12,,,,,,,G2 +1516,Rachel Rappaport,rachel.rappaport@bizzabo.com,rachel.rappaport@bizzabo.com,G2 Profile Anatomy,,2022-09-28 17:34:12,,,,,,,G2 +1517,Rachel Rappaport,rachel.rappaport@bizzabo.com,rachel.rappaport@bizzabo.com,Review Tracking & Brand Building,,2022-09-28 17:34:12,,,,,,,G2 +1518,Rachel Rappaport,rachel.rappaport@bizzabo.com,rachel.rappaport@bizzabo.com,The Review Rundown,,2022-09-28 17:34:12,,,,,,,G2 +1519,Danhel Fajardo,danhel.fajardo@goanimate.com,danhel.fajardo@goanimate.com,G2 Profile Anatomy,20,2022-09-28 16:52:52,2022-09-28 16:53:01,,1,17%,What is the Value of a G2 Profile?,2022-09-28 16:56:19,G2 +1520,Danhel Fajardo,danhel.fajardo@goanimate.com,danhel.fajardo@goanimate.com,Profile Performance & Lead Management,,2022-09-28 16:52:52,,,,,,,G2 +1521,Danhel Fajardo,danhel.fajardo@goanimate.com,danhel.fajardo@goanimate.com,The Review Rundown,,2022-09-28 16:52:52,,,,,,,G2 +1522,Danhel Fajardo,danhel.fajardo@goanimate.com,danhel.fajardo@goanimate.com,Review Tracking & Brand Building,,2022-09-28 16:52:52,,,,,,,G2 +1523,Craig Rankin,craig.rankin@duda.co,craig.rankin@duda.co,Review Tracking & Brand Building,,2022-09-28 16:42:02,,,,,,,G2 +1524,Craig Rankin,craig.rankin@duda.co,craig.rankin@duda.co,G2 Profile Anatomy,,2022-09-28 16:42:02,,,,,,,G2 +1525,Craig Rankin,craig.rankin@duda.co,craig.rankin@duda.co,Profile Performance & Lead Management,,2022-09-28 16:42:02,,,,,,,G2 +1526,Craig Rankin,craig.rankin@duda.co,craig.rankin@duda.co,The Review Rundown,,2022-09-28 16:42:02,,,,,,,G2 +1527,Tracey Landstrom,tracey.landstrom@gmail.com,tracey.landstrom@gmail.com,Review Tracking & Brand Building,,2022-09-28 16:41:03,,,,,,,G2 +1528,Tracey Landstrom,tracey.landstrom@gmail.com,tracey.landstrom@gmail.com,Profile Performance & Lead Management,,2022-09-28 16:41:03,,,,,,,G2 +1529,Tracey Landstrom,tracey.landstrom@gmail.com,tracey.landstrom@gmail.com,The Review Rundown,,2022-09-28 16:41:03,,,,,,,G2 +1530,Tracey Landstrom,tracey.landstrom@gmail.com,tracey.landstrom@gmail.com,G2 Profile Anatomy,20,2022-09-28 16:41:03,2022-09-28 18:41:12,,1,0%,,,G2 +1531,Gina Denenberg,gdenenberg@g2.com,gdenenberg@g2.com,Profile Performance & Lead Management,,2022-09-28 16:39:29,,,,,,,G2 +1532,Gina Denenberg,gdenenberg@g2.com,gdenenberg@g2.com,Review Tracking & Brand Building,,2022-09-28 16:39:29,,,,,,,G2 +1533,Gina Denenberg,gdenenberg@g2.com,gdenenberg@g2.com,G2 Profile Anatomy,20,2022-09-28 16:39:29,2022-10-03 16:55:10,,1,0%,,,G2 +1534,Gina Denenberg,gdenenberg@g2.com,gdenenberg@g2.com,The Review Rundown,LIVE,2022-09-28 16:39:29,2022-10-03 16:55:40,,1,0%,,,G2 +1535,Omari Starks,ostarks@brightidea.com,ostarks@brightidea.com,G2 Profile Anatomy,,2022-09-28 16:34:27,,,,,,,G2 +1536,Omari Starks,ostarks@brightidea.com,ostarks@brightidea.com,Review Tracking & Brand Building,,2022-09-28 16:34:27,,,,,,,G2 +1537,Omari Starks,ostarks@brightidea.com,ostarks@brightidea.com,Profile Performance & Lead Management,LIVE,2022-09-28 16:34:27,2022-09-28 16:34:48,,1,0%,,,G2 +1538,Omari Starks,ostarks@brightidea.com,ostarks@brightidea.com,The Review Rundown,LIVE,2022-09-28 16:34:27,2022-09-28 20:41:40,,1,0%,,,G2 +1539,Mary Green,marygreencny@gmail.com,marygreencny@gmail.com,Profile Performance & Lead Management,,2022-09-28 16:31:26,,,,,,,G2 +1540,Mary Green,marygreencny@gmail.com,marygreencny@gmail.com,G2 Profile Anatomy,,2022-09-28 16:31:26,,,,,,,G2 +1541,Mary Green,marygreencny@gmail.com,marygreencny@gmail.com,Review Tracking & Brand Building,,2022-09-28 16:31:26,,,,,,,G2 +1542,Mary Green,marygreencny@gmail.com,marygreencny@gmail.com,The Review Rundown,,2022-09-28 16:31:26,,,,,,,G2 +1543,David Vero,dvero@successfinder.com,dvero@successfinder.com,Profile Performance & Lead Management,LIVE,2022-09-28 16:24:23,2022-10-17 20:04:25,2022-10-17 20:32:41,1,100%,Lead Webhooks,2022-10-17 20:32:41,G2 +1544,David Vero,dvero@successfinder.com,dvero@successfinder.com,Review Tracking & Brand Building,LIVE,2022-09-28 16:24:23,2022-09-29 18:24:03,2022-10-17 20:04:10,1,100%,Review Integrations,2022-10-17 20:04:10,G2 +1545,David Vero,dvero@successfinder.com,dvero@successfinder.com,G2 Profile Anatomy,20,2022-09-28 16:24:23,2022-09-28 18:38:07,2022-09-28 18:51:54,1,100%,Top Tips Recap,2022-09-28 18:51:54,G2 +1546,David Vero,dvero@successfinder.com,dvero@successfinder.com,The Review Rundown,11,2022-09-28 16:24:23,2022-09-28 18:52:28,2022-09-28 18:57:29,1,100%,Review Moderation,2022-09-28 18:57:29,G2 +1547,Pramila Siwa,psiwa@g2.com,psiwa@g2.com,How to Use Buyer Intent,LIVE,2022-09-28 16:23:36,2022-09-28 16:23:37,2022-09-28 16:28:40,1,100%,Buyer Intent Score Filter Recommendations,2022-09-28 16:28:40,G2 +1548,Jake Sotir,jake.sotir@gmail.com,jake.sotir@gmail.com,Profile Performance & Lead Management,,2022-09-28 16:13:35,,,,,,,G2 +1549,Jake Sotir,jake.sotir@gmail.com,jake.sotir@gmail.com,Review Tracking & Brand Building,LIVE,2022-09-28 16:13:35,2022-09-29 18:34:43,2022-09-29 18:36:21,1,100%,Review Integrations,2022-09-29 18:36:21,G2 +1550,Jake Sotir,jake.sotir@gmail.com,jake.sotir@gmail.com,The Review Rundown,11,2022-09-28 16:13:35,2022-09-28 16:18:03,,1,57%,Types of G2 Review Generation,2022-09-28 17:54:26,G2 +1551,Jake Sotir,jake.sotir@gmail.com,jake.sotir@gmail.com,G2 Profile Anatomy,20,2022-09-28 16:13:35,2022-09-28 16:17:46,,1,0%,,,G2 +1552,Ken Almack,ken.almack@phenompeople.com,ken.almack@phenompeople.com,Profile Performance & Lead Management,,2022-09-28 16:09:43,,,,,,,G2 +1553,Ken Almack,ken.almack@phenompeople.com,ken.almack@phenompeople.com,The Review Rundown,,2022-09-28 16:09:43,,,,,,,G2 +1554,Ken Almack,ken.almack@phenompeople.com,ken.almack@phenompeople.com,Review Tracking & Brand Building,,2022-09-28 16:09:43,,,,,,,G2 +1555,Ken Almack,ken.almack@phenompeople.com,ken.almack@phenompeople.com,G2 Profile Anatomy,,2022-09-28 16:09:43,,,,,,,G2 +1556,Mandy Parisi,mandy@optimoroute.com,mandy@optimoroute.com,The Review Rundown,,2022-09-28 15:55:40,,,,,,,G2 +1557,Mandy Parisi,mandy@optimoroute.com,mandy@optimoroute.com,Profile Performance & Lead Management,,2022-09-28 15:55:40,,,,,,,G2 +1558,Mandy Parisi,mandy@optimoroute.com,mandy@optimoroute.com,G2 Profile Anatomy,20,2022-09-28 15:55:40,2022-10-27 18:53:14,2022-10-27 19:08:35,1,100%,Top Tips Recap,2022-10-27 19:08:35,G2 +1559,Mandy Parisi,mandy@optimoroute.com,mandy@optimoroute.com,Review Tracking & Brand Building,LIVE,2022-09-28 15:55:40,2022-10-28 13:00:39,2022-10-28 16:22:21,1,100%,Marketing Content: G2 Badges,2022-10-28 16:22:21,G2 +1560,Meesha Jotshi,mjotshi@g2.com,mjotshi@g2.com,Review Tracking & Brand Building,,2022-09-28 15:54:52,,,,,,,G2 +1561,Meesha Jotshi,mjotshi@g2.com,mjotshi@g2.com,G2 Profile Anatomy,,2022-09-28 15:54:52,,,,,,,G2 +1562,Meesha Jotshi,mjotshi@g2.com,mjotshi@g2.com,The Review Rundown,,2022-09-28 15:54:52,,,,,,,G2 +1563,Meesha Jotshi,mjotshi@g2.com,mjotshi@g2.com,Profile Performance & Lead Management,,2022-09-28 15:54:52,,,,,,,G2 +1564,Jessica Condupa,jessicacondupa@gmail.com,jessicacondupa@gmail.com,G2 Profile Anatomy,,2022-09-28 15:45:39,,,,,,,G2 +1565,Jessica Condupa,jessicacondupa@gmail.com,jessicacondupa@gmail.com,Profile Performance & Lead Management,,2022-09-28 15:45:39,,,,,,,G2 +1566,Jessica Condupa,jessicacondupa@gmail.com,jessicacondupa@gmail.com,The Review Rundown,,2022-09-28 15:45:39,,,,,,,G2 +1567,Jessica Condupa,jessicacondupa@gmail.com,jessicacondupa@gmail.com,Review Tracking & Brand Building,,2022-09-28 15:45:39,,,,,,,G2 +1568,Olivia Morales,olivia@leasecake.com,olivia@leasecake.com,G2 Profile Anatomy,,2022-09-28 15:19:05,,,,,,,G2 +1569,Olivia Morales,olivia@leasecake.com,olivia@leasecake.com,Review Tracking & Brand Building,,2022-09-28 15:19:05,,,,,,,G2 +1570,Olivia Morales,olivia@leasecake.com,olivia@leasecake.com,Profile Performance & Lead Management,,2022-09-28 15:19:05,,,,,,,G2 +1571,Olivia Morales,olivia@leasecake.com,olivia@leasecake.com,The Review Rundown,,2022-09-28 15:19:05,,,,,,,G2 +1572,Michael Lydon,mlydon@g2.com,mlydon@g2.com,Review Tracking & Brand Building,,2022-09-28 15:15:02,,,,,,,G2 +1573,Michael Lydon,mlydon@g2.com,mlydon@g2.com,Profile Performance & Lead Management,,2022-09-28 15:15:02,,,,,,,G2 +1574,Michael Lydon,mlydon@g2.com,mlydon@g2.com,G2 Profile Anatomy,20,2022-09-28 15:15:02,2022-09-28 15:15:10,,1,0%,,,G2 +1575,Michael Lydon,mlydon@g2.com,mlydon@g2.com,The Review Rundown,,2022-09-28 15:15:02,,,,,,,G2 +1576,Jamie Perl,jperl@g2.com,jperl@g2.com,G2 Profile Anatomy,,2022-09-28 15:05:52,,,,,,,G2 +1577,Jamie Perl,jperl@g2.com,jperl@g2.com,Review Tracking & Brand Building,LIVE,2022-09-28 15:05:52,2022-10-04 19:57:45,,1,0%,,,G2 +1578,Jamie Perl,jperl@g2.com,jperl@g2.com,The Review Rundown,LIVE,2022-09-28 15:05:52,2022-09-29 16:27:25,,1,0%,,,G2 +1579,Jamie Perl,jperl@g2.com,jperl@g2.com,Profile Performance & Lead Management,,2022-09-28 15:05:52,,,,,,,G2 +1580,Shenal Mendis,shenal@wso2.com,shenal@wso2.com,The Review Rundown,,2022-09-28 14:59:20,,,,,,,G2 +1581,Shenal Mendis,shenal@wso2.com,shenal@wso2.com,Profile Performance & Lead Management,,2022-09-28 14:59:20,,,,,,,G2 +1582,Shenal Mendis,shenal@wso2.com,shenal@wso2.com,G2 Profile Anatomy,,2022-09-28 14:59:20,,,,,,,G2 +1583,Shenal Mendis,shenal@wso2.com,shenal@wso2.com,Review Tracking & Brand Building,,2022-09-28 14:59:20,,,,,,,G2 +1584,Michael Mischke,mmischke@egnyte.com,mmischke@egnyte.com,Review Tracking & Brand Building,,2022-09-28 14:50:11,,,,,,,G2 +1585,Michael Mischke,mmischke@egnyte.com,mmischke@egnyte.com,G2 Profile Anatomy,,2022-09-28 14:50:11,,,,,,,G2 +1586,Michael Mischke,mmischke@egnyte.com,mmischke@egnyte.com,The Review Rundown,,2022-09-28 14:50:11,,,,,,,G2 +1587,Michael Mischke,mmischke@egnyte.com,mmischke@egnyte.com,Profile Performance & Lead Management,,2022-09-28 14:50:11,,,,,,,G2 +1588,Dylan Ward,dward@slicktext.com,dward@slicktext.com,Review Tracking & Brand Building,,2022-09-28 14:46:12,,,,,,,G2 +1589,Dylan Ward,dward@slicktext.com,dward@slicktext.com,G2 Profile Anatomy,,2022-09-28 14:46:12,,,,,,,G2 +1590,Dylan Ward,dward@slicktext.com,dward@slicktext.com,Profile Performance & Lead Management,,2022-09-28 14:46:12,,,,,,,G2 +1591,Dylan Ward,dward@slicktext.com,dward@slicktext.com,The Review Rundown,11,2022-09-28 14:46:12,2022-09-28 14:46:56,2022-09-28 14:52:33,1,100%,Review Moderation,2022-09-28 14:52:33,G2 +1592,Stephen Lawless,stlawless5@gmail.com,stlawless5@gmail.com,G2 Profile Anatomy,,2022-09-28 14:43:17,,,,,,,G2 +1593,Stephen Lawless,stlawless5@gmail.com,stlawless5@gmail.com,The Review Rundown,,2022-09-28 14:43:17,,,,,,,G2 +1594,Stephen Lawless,stlawless5@gmail.com,stlawless5@gmail.com,Profile Performance & Lead Management,,2022-09-28 14:43:17,,,,,,,G2 +1595,Stephen Lawless,stlawless5@gmail.com,stlawless5@gmail.com,Review Tracking & Brand Building,,2022-09-28 14:43:17,,,,,,,G2 +1596,Ahmad Ansari,aansari@g2.com,aansari@g2.com,Profile Performance & Lead Management,,2022-09-28 14:39:27,,,,,,,G2 +1597,Ahmad Ansari,aansari@g2.com,aansari@g2.com,The Review Rundown,,2022-09-28 14:39:27,,,,,,,G2 +1598,Ahmad Ansari,aansari@g2.com,aansari@g2.com,Review Tracking & Brand Building,,2022-09-28 14:39:27,,,,,,,G2 +1599,Ahmad Ansari,aansari@g2.com,aansari@g2.com,G2 Profile Anatomy,,2022-09-28 14:39:27,,,,,,,G2 +1600,Clark Maxwell,cmaxwell@fleetio.com,cmaxwell@fleetio.com,Review Tracking & Brand Building,LIVE,2022-09-28 14:35:24,2022-09-28 14:35:46,,1,0%,,,G2 +1601,Clark Maxwell,cmaxwell@fleetio.com,cmaxwell@fleetio.com,G2 Profile Anatomy,,2022-09-28 14:35:24,,,,,,,G2 +1602,Clark Maxwell,cmaxwell@fleetio.com,cmaxwell@fleetio.com,Profile Performance & Lead Management,,2022-09-28 14:35:24,,,,,,,G2 +1603,Clark Maxwell,cmaxwell@fleetio.com,cmaxwell@fleetio.com,The Review Rundown,,2022-09-28 14:35:24,,,,,,,G2 +1604,Colin S K,ckellymelb@gmail.com,ckellymelb@gmail.com,Profile Performance & Lead Management,,2022-09-28 14:34:04,,,,,,,G2 +1605,Colin S K,ckellymelb@gmail.com,ckellymelb@gmail.com,G2 Profile Anatomy,,2022-09-28 14:34:04,,,,,,,G2 +1606,Colin S K,ckellymelb@gmail.com,ckellymelb@gmail.com,The Review Rundown,,2022-09-28 14:34:04,,,,,,,G2 +1607,Colin S K,ckellymelb@gmail.com,ckellymelb@gmail.com,Review Tracking & Brand Building,,2022-09-28 14:34:04,,,,,,,G2 +1608,Brenden Oslund,boslund@g2.com,boslund@g2.com,G2 Profile Anatomy,,2022-09-28 14:29:34,,,,,,,G2 +1609,Brenden Oslund,boslund@g2.com,boslund@g2.com,Profile Performance & Lead Management,,2022-09-28 14:29:34,,,,,,,G2 +1610,Brenden Oslund,boslund@g2.com,boslund@g2.com,The Review Rundown,,2022-09-28 14:29:34,,,,,,,G2 +1611,Brenden Oslund,boslund@g2.com,boslund@g2.com,Review Tracking & Brand Building,,2022-09-28 14:29:34,,,,,,,G2 +1612,Abhilash Chowdhury,achowdhury@g2.com,achowdhury@g2.com,G2 Profile Anatomy,,2022-09-28 14:25:50,,,,,,,G2 +1613,Abhilash Chowdhury,achowdhury@g2.com,achowdhury@g2.com,Profile Performance & Lead Management,,2022-09-28 14:25:50,,,,,,,G2 +1614,Abhilash Chowdhury,achowdhury@g2.com,achowdhury@g2.com,Review Tracking & Brand Building,,2022-09-28 14:25:50,,,,,,,G2 +1615,Abhilash Chowdhury,achowdhury@g2.com,achowdhury@g2.com,The Review Rundown,,2022-09-28 14:25:50,,,,,,,G2 +1616,Erin Satterthwaite,esatterthwaite@g2.com,esatterthwaite@g2.com,The Review Rundown,11,2022-09-28 14:15:49,2022-09-28 18:23:59,,1,14%,Intro/4 Pillars,2022-10-13 14:17:20,G2 +1617,Erin Satterthwaite,esatterthwaite@g2.com,esatterthwaite@g2.com,Review Tracking & Brand Building,,2022-09-28 14:15:49,,,,,,,G2 +1618,Erin Satterthwaite,esatterthwaite@g2.com,esatterthwaite@g2.com,Profile Performance & Lead Management,LIVE,2022-09-28 14:15:49,2022-10-12 21:36:20,,1,13%,Lead Activity & Lead Emails,2022-10-12 21:36:34,G2 +1619,Erin Satterthwaite,esatterthwaite@g2.com,esatterthwaite@g2.com,G2 Profile Anatomy,20,2022-09-28 14:15:49,2022-10-17 18:15:49,,1,0%,,,G2 +1620,Kade Herbert,kadeherbert117@gmail.com,kadeherbert117@gmail.com,Review Tracking & Brand Building,,2022-09-28 14:02:37,,,,,,,G2 +1621,Kade Herbert,kadeherbert117@gmail.com,kadeherbert117@gmail.com,Profile Performance & Lead Management,,2022-09-28 14:02:37,,,,,,,G2 +1622,Kade Herbert,kadeherbert117@gmail.com,kadeherbert117@gmail.com,The Review Rundown,,2022-09-28 14:02:37,,,,,,,G2 +1623,Kade Herbert,kadeherbert117@gmail.com,kadeherbert117@gmail.com,G2 Profile Anatomy,,2022-09-28 14:02:37,,,,,,,G2 +1624,Katlin Hess,katlin.hess@gmail.com,katlin.hess@gmail.com,G2 Profile Anatomy,,2022-09-28 13:56:31,,,,,,,G2 +1625,Katlin Hess,katlin.hess@gmail.com,katlin.hess@gmail.com,Profile Performance & Lead Management,,2022-09-28 13:56:31,,,,,,,G2 +1626,Katlin Hess,katlin.hess@gmail.com,katlin.hess@gmail.com,The Review Rundown,,2022-09-28 13:56:31,,,,,,,G2 +1627,Katlin Hess,katlin.hess@gmail.com,katlin.hess@gmail.com,Review Tracking & Brand Building,,2022-09-28 13:56:31,,,,,,,G2 +1628,Victoria LaPlante,victoria.laplante@floqast.com,victoria.laplante@floqast.com,Profile Performance & Lead Management,,2022-09-28 13:52:41,,,,,,,G2 +1629,Victoria LaPlante,victoria.laplante@floqast.com,victoria.laplante@floqast.com,The Review Rundown,,2022-09-28 13:52:41,,,,,,,G2 +1630,Victoria LaPlante,victoria.laplante@floqast.com,victoria.laplante@floqast.com,Review Tracking & Brand Building,,2022-09-28 13:52:41,,,,,,,G2 +1631,Victoria LaPlante,victoria.laplante@floqast.com,victoria.laplante@floqast.com,G2 Profile Anatomy,,2022-09-28 13:52:41,,,,,,,G2 +1632,Tim Silber,tsilber@g2.com,tsilber@g2.com,How to Use Buyer Intent,LIVE,2022-09-28 13:46:57,2022-09-28 13:46:58,,1,0%,,,G2 +1633,Jill Skene,jill.skene@iwave.com,jill.skene@iwave.com,Profile Performance & Lead Management,LIVE,2022-09-28 13:46:46,2022-09-29 13:55:39,,1,0%,,,G2 +1634,Jill Skene,jill.skene@iwave.com,jill.skene@iwave.com,Review Tracking & Brand Building,,2022-09-28 13:46:46,,,,,,,G2 +1635,Jill Skene,jill.skene@iwave.com,jill.skene@iwave.com,The Review Rundown,,2022-09-28 13:46:46,,,,,,,G2 +1636,Jill Skene,jill.skene@iwave.com,jill.skene@iwave.com,G2 Profile Anatomy,,2022-09-28 13:46:46,,,,,,,G2 +1637,Rachel Gelbert,rgelbert@g2.com,rgelbert@g2.com,The Review Rundown,11,2022-09-28 13:46:40,2022-09-28 13:46:59,2022-09-28 13:57:23,1,100%,Review Moderation,2022-09-28 13:57:23,G2 +1638,Rachel Gelbert,rgelbert@g2.com,rgelbert@g2.com,G2 Profile Anatomy,,2022-09-28 13:46:40,,,,,,,G2 +1639,Rachel Gelbert,rgelbert@g2.com,rgelbert@g2.com,Profile Performance & Lead Management,,2022-09-28 13:46:40,,,,,,,G2 +1640,Rachel Gelbert,rgelbert@g2.com,rgelbert@g2.com,Review Tracking & Brand Building,,2022-09-28 13:46:40,,,,,,,G2 +1641,Tim Silber,tsilber@g2.com,tsilber@g2.com,Buyer Intent Basics,5,2022-09-28 13:45:53,2022-09-28 13:45:53,,1,50%,Integrations,2022-10-07 17:51:49,G2 +1642,Richard Posluszny,richard@northpass.com,richard@northpass.com,The Review Rundown,11,2022-09-28 13:42:58,2022-09-28 13:43:27,,1,14%,What are Reviews?,2022-09-28 15:49:04,G2 +1643,Richard Posluszny,richard@northpass.com,richard@northpass.com,Review Tracking & Brand Building,,2022-09-28 13:42:58,,,,,,,G2 +1644,Richard Posluszny,richard@northpass.com,richard@northpass.com,Profile Performance & Lead Management,LIVE,2022-09-28 13:42:58,2022-10-05 22:57:11,,1,0%,,,G2 +1645,Richard Posluszny,richard@northpass.com,richard@northpass.com,G2 Profile Anatomy,20,2022-09-28 13:42:58,2022-09-28 13:43:14,,1,0%,,,G2 +1646,Nick Zuppe,nzuppe@northpass.com,nzuppe@northpass.com,Profile Performance & Lead Management,,2022-09-28 13:41:19,,,,,,,G2 +1647,Nick Zuppe,nzuppe@northpass.com,nzuppe@northpass.com,Review Tracking & Brand Building,LIVE,2022-09-28 13:41:19,2022-09-28 14:17:06,,1,0%,,,G2 +1648,Nick Zuppe,nzuppe@northpass.com,nzuppe@northpass.com,The Review Rundown,,2022-09-28 13:41:19,,,,,,,G2 +1649,Nick Zuppe,nzuppe@northpass.com,nzuppe@northpass.com,G2 Profile Anatomy,,2022-09-28 13:41:19,,,,,,,G2 +1650,Bram Billiet,bram.billiet@usewhale.io,bram.billiet@usewhale.io,G2 Profile Anatomy,20,2022-09-28 13:40:00,2022-09-28 13:40:30,,1,0%,,,G2 +1651,Bram Billiet,bram.billiet@usewhale.io,bram.billiet@usewhale.io,The Review Rundown,,2022-09-28 13:40:00,,,,,,,G2 +1652,Bram Billiet,bram.billiet@usewhale.io,bram.billiet@usewhale.io,Review Tracking & Brand Building,,2022-09-28 13:40:00,,,,,,,G2 +1653,Bram Billiet,bram.billiet@usewhale.io,bram.billiet@usewhale.io,Profile Performance & Lead Management,,2022-09-28 13:40:00,,,,,,,G2 +1654,Reyansh Mestry,reyansh.mestry@sirionlabs.com,reyansh.mestry@sirionlabs.com,Review Tracking & Brand Building,LIVE,2022-09-28 13:29:31,2022-09-28 13:29:52,,1,0%,,,G2 +1655,Reyansh Mestry,reyansh.mestry@sirionlabs.com,reyansh.mestry@sirionlabs.com,G2 Profile Anatomy,,2022-09-28 13:29:31,,,,,,,G2 +1656,Reyansh Mestry,reyansh.mestry@sirionlabs.com,reyansh.mestry@sirionlabs.com,Profile Performance & Lead Management,,2022-09-28 13:29:31,,,,,,,G2 +1657,Reyansh Mestry,reyansh.mestry@sirionlabs.com,reyansh.mestry@sirionlabs.com,The Review Rundown,,2022-09-28 13:29:31,,,,,,,G2 +1658,Jeremy Lee,jlee2@g2.com,jlee2@g2.com,The Review Rundown,,2022-09-28 13:28:31,,,,,,,G2 +1659,Jeremy Lee,jlee2@g2.com,jlee2@g2.com,Review Tracking & Brand Building,,2022-09-28 13:28:31,,,,,,,G2 +1660,Jeremy Lee,jlee2@g2.com,jlee2@g2.com,G2 Profile Anatomy,,2022-09-28 13:28:31,,,,,,,G2 +1661,Jeremy Lee,jlee2@g2.com,jlee2@g2.com,Profile Performance & Lead Management,,2022-09-28 13:28:31,,,,,,,G2 +1662,Ratnaraaj (Rustoo) Parekh,ratnaraaj.parekh@sosafe.de,ratnaraaj.parekh@sosafe.de,The Review Rundown,,2022-09-28 13:24:37,,,,,,,G2 +1663,Ratnaraaj (Rustoo) Parekh,ratnaraaj.parekh@sosafe.de,ratnaraaj.parekh@sosafe.de,Review Tracking & Brand Building,LIVE,2022-09-28 13:24:37,2022-09-28 13:24:52,,1,0%,,,G2 +1664,Ratnaraaj (Rustoo) Parekh,ratnaraaj.parekh@sosafe.de,ratnaraaj.parekh@sosafe.de,G2 Profile Anatomy,,2022-09-28 13:24:37,,,,,,,G2 +1665,Ratnaraaj (Rustoo) Parekh,ratnaraaj.parekh@sosafe.de,ratnaraaj.parekh@sosafe.de,Profile Performance & Lead Management,,2022-09-28 13:24:37,,,,,,,G2 +1666,Saumya Bagga,sbagga@g2.com,sbagga@g2.com,G2 Profile Anatomy,,2022-09-28 13:23:29,,,,,,,G2 +1667,Saumya Bagga,sbagga@g2.com,sbagga@g2.com,Review Tracking & Brand Building,,2022-09-28 13:23:29,,,,,,,G2 +1668,Saumya Bagga,sbagga@g2.com,sbagga@g2.com,The Review Rundown,,2022-09-28 13:23:29,,,,,,,G2 +1669,Saumya Bagga,sbagga@g2.com,sbagga@g2.com,Profile Performance & Lead Management,,2022-09-28 13:23:29,,,,,,,G2 +1670,Rob O'Doherty,rob@boostup.ai,rob@boostup.ai,Review Tracking & Brand Building,,2022-09-28 13:22:12,,,,,,,G2 +1671,Rob O'Doherty,rob@boostup.ai,rob@boostup.ai,G2 Profile Anatomy,,2022-09-28 13:22:12,,,,,,,G2 +1672,Rob O'Doherty,rob@boostup.ai,rob@boostup.ai,The Review Rundown,,2022-09-28 13:22:12,,,,,,,G2 +1673,Rob O'Doherty,rob@boostup.ai,rob@boostup.ai,Profile Performance & Lead Management,,2022-09-28 13:22:12,,,,,,,G2 +1674,Amanda Malko,amanda@g2.com,amanda@g2.com,Buyer Intent Basics,5,2022-09-28 13:20:34,2022-09-28 13:20:35,,1,0%,,,G2 +1675,Will Pagel,will.r.pagel@gmail.com,will.r.pagel@gmail.com,The Review Rundown,,2022-09-28 13:16:07,,,,,,,G2 +1676,Will Pagel,will.r.pagel@gmail.com,will.r.pagel@gmail.com,G2 Profile Anatomy,LIVE,2022-09-28 13:16:07,2022-11-09 15:25:29,,1,0%,,,G2 +1677,Will Pagel,will.r.pagel@gmail.com,will.r.pagel@gmail.com,Review Tracking & Brand Building,,2022-09-28 13:16:07,,,,,,,G2 +1678,Will Pagel,will.r.pagel@gmail.com,will.r.pagel@gmail.com,Profile Performance & Lead Management,,2022-09-28 13:16:07,,,,,,,G2 +1679,Pramila Siwa,psiwa@g2.com,psiwa@g2.com,Review Tracking & Brand Building,,2022-09-28 13:07:14,,,,,,,G2 +1680,Pramila Siwa,psiwa@g2.com,psiwa@g2.com,Profile Performance & Lead Management,,2022-09-28 13:07:14,,,,,,,G2 +1681,Pramila Siwa,psiwa@g2.com,psiwa@g2.com,G2 Profile Anatomy,20,2022-09-28 13:07:14,2022-09-28 13:07:45,2022-09-29 17:24:03,1,100%,Top Tips Recap,2022-09-29 17:24:04,G2 +1682,Pramila Siwa,psiwa@g2.com,psiwa@g2.com,The Review Rundown,,2022-09-28 13:07:14,,,,,,,G2 +1683,Amanda Malko,amanda@g2.com,amanda@g2.com,The Review Rundown,,2022-09-28 13:06:22,,,,,,,G2 +1684,Amanda Malko,amanda@g2.com,amanda@g2.com,Profile Performance & Lead Management,,2022-09-28 13:06:22,,,,,,,G2 +1685,Amanda Malko,amanda@g2.com,amanda@g2.com,Review Tracking & Brand Building,,2022-09-28 13:06:22,,,,,,,G2 +1686,Amanda Malko,amanda@g2.com,amanda@g2.com,G2 Profile Anatomy,,2022-09-28 13:06:22,,,,,,,G2 +1687,Saleha Ahmed,sahmed@g2.com,sahmed@g2.com,Review Tracking & Brand Building,,2022-09-28 13:04:14,,,,,,,G2 +1688,Saleha Ahmed,sahmed@g2.com,sahmed@g2.com,The Review Rundown,11,2022-09-28 13:04:14,2022-09-28 13:36:20,,1,0%,,,G2 +1689,Saleha Ahmed,sahmed@g2.com,sahmed@g2.com,G2 Profile Anatomy,,2022-09-28 13:04:14,,,,,,,G2 +1690,Saleha Ahmed,sahmed@g2.com,sahmed@g2.com,Profile Performance & Lead Management,,2022-09-28 13:04:14,,,,,,,G2 +1691,Amanda Kepshire,amanda.kepshire@florencehc.com,amanda.kepshire@florencehc.com,The Review Rundown,,2022-09-27 20:10:35,,,,,,,G2 +1692,Amanda Kepshire,amanda.kepshire@florencehc.com,amanda.kepshire@florencehc.com,Profile Performance & Lead Management,,2022-09-27 20:10:35,,,,,,,G2 +1693,Amanda Kepshire,amanda.kepshire@florencehc.com,amanda.kepshire@florencehc.com,G2 Profile Anatomy,,2022-09-27 20:10:35,,,,,,,G2 +1694,Amanda Kepshire,amanda.kepshire@florencehc.com,amanda.kepshire@florencehc.com,Review Tracking & Brand Building,,2022-09-27 20:10:35,,,,,,,G2 +1695,Stephanie Saucedo Cruz,stephie.saucedo@gmail.com,stephie.saucedo@gmail.com,Profile Performance & Lead Management,,2022-09-26 21:58:41,,,,,,,G2 +1696,Stephanie Saucedo Cruz,stephie.saucedo@gmail.com,stephie.saucedo@gmail.com,G2 Profile Anatomy,,2022-09-26 21:58:41,,,,,,,G2 +1697,Stephanie Saucedo Cruz,stephie.saucedo@gmail.com,stephie.saucedo@gmail.com,The Review Rundown,,2022-09-26 21:58:41,,,,,,,G2 +1698,Stephanie Saucedo Cruz,stephie.saucedo@gmail.com,stephie.saucedo@gmail.com,Review Tracking & Brand Building,,2022-09-26 21:58:41,,,,,,,G2 +1699,Olivia Hyman,ohyman@g2.com,ohyman@g2.com,The Review Rundown,LIVE,2022-09-26 20:48:02,2022-11-10 16:15:45,,1,0%,,,G2 +1700,Olivia Hyman,ohyman@g2.com,ohyman@g2.com,Review Tracking & Brand Building,,2022-09-26 20:48:02,,,,,,,G2 +1701,Olivia Hyman,ohyman@g2.com,ohyman@g2.com,G2 Profile Anatomy,20,2022-09-26 20:48:02,2022-10-17 15:14:45,,1,0%,,,G2 +1702,Olivia Hyman,ohyman@g2.com,ohyman@g2.com,Profile Performance & Lead Management,,2022-09-26 20:48:02,,,,,,,G2 +1703,Rachel Gianfredi,rgianfredi@g2.com,rgianfredi@g2.com,Review Tracking & Brand Building,,2022-09-26 18:21:30,,,,,,,G2 +1704,Rachel Gianfredi,rgianfredi@g2.com,rgianfredi@g2.com,G2 Profile Anatomy,20,2022-09-26 18:21:30,2022-09-26 18:22:13,,1,33%,Seller Provided Content,2022-09-26 18:32:28,G2 +1705,Rachel Gianfredi,rgianfredi@g2.com,rgianfredi@g2.com,The Review Rundown,,2022-09-26 18:21:30,,,,,,,G2 +1706,Rachel Gianfredi,rgianfredi@g2.com,rgianfredi@g2.com,Profile Performance & Lead Management,,2022-09-26 18:21:30,,,,,,,G2 +1707,Elizabeth Kalil,lkalil@cyberfox.com,lkalil@cyberfox.com,Profile Performance & Lead Management,,2022-09-26 17:48:27,,,,,,,G2 +1708,Elizabeth Kalil,lkalil@cyberfox.com,lkalil@cyberfox.com,Review Tracking & Brand Building,,2022-09-26 17:48:27,,,,,,,G2 +1709,Elizabeth Kalil,lkalil@cyberfox.com,lkalil@cyberfox.com,G2 Profile Anatomy,,2022-09-26 17:48:27,,,,,,,G2 +1710,Elizabeth Kalil,lkalil@cyberfox.com,lkalil@cyberfox.com,The Review Rundown,,2022-09-26 17:48:27,,,,,,,G2 +1711,Raghav Kanwar,raghav.kanwar@gartner.com,raghav.kanwar@gartner.com,Profile Performance & Lead Management,,2022-09-26 16:32:57,,,,,,,G2 +1712,Raghav Kanwar,raghav.kanwar@gartner.com,raghav.kanwar@gartner.com,G2 Profile Anatomy,,2022-09-26 16:32:57,,,,,,,G2 +1713,Raghav Kanwar,raghav.kanwar@gartner.com,raghav.kanwar@gartner.com,The Review Rundown,,2022-09-26 16:32:57,,,,,,,G2 +1714,Raghav Kanwar,raghav.kanwar@gartner.com,raghav.kanwar@gartner.com,Review Tracking & Brand Building,,2022-09-26 16:32:57,,,,,,,G2 +1715,Eden Scott-Reid,eden@accountek.com,eden@accountek.com,Review Tracking & Brand Building,,2022-09-26 14:51:16,,,,,,,G2 +1716,Eden Scott-Reid,eden@accountek.com,eden@accountek.com,The Review Rundown,,2022-09-26 14:51:16,,,,,,,G2 +1717,Eden Scott-Reid,eden@accountek.com,eden@accountek.com,G2 Profile Anatomy,,2022-09-26 14:51:16,,,,,,,G2 +1718,Eden Scott-Reid,eden@accountek.com,eden@accountek.com,Profile Performance & Lead Management,,2022-09-26 14:51:16,,,,,,,G2 +1719,Vincent Goyette,vgoyette22@gmail.com,vgoyette22@gmail.com,Review Tracking & Brand Building,,2022-09-26 14:31:31,,,,,,,G2 +1720,Vincent Goyette,vgoyette22@gmail.com,vgoyette22@gmail.com,The Review Rundown,,2022-09-26 14:31:31,,,,,,,G2 +1721,Vincent Goyette,vgoyette22@gmail.com,vgoyette22@gmail.com,Profile Performance & Lead Management,,2022-09-26 14:31:31,,,,,,,G2 +1722,Vincent Goyette,vgoyette22@gmail.com,vgoyette22@gmail.com,G2 Profile Anatomy,,2022-09-26 14:31:31,,,,,,,G2 +1723,Regine Bautista,regine@amberengine.com,regine@amberengine.com,Review Tracking & Brand Building,,2022-09-26 12:59:32,,,,,,,G2 +1724,Regine Bautista,regine@amberengine.com,regine@amberengine.com,Profile Performance & Lead Management,,2022-09-26 12:59:32,,,,,,,G2 +1725,Regine Bautista,regine@amberengine.com,regine@amberengine.com,G2 Profile Anatomy,,2022-09-26 12:59:32,,,,,,,G2 +1726,Regine Bautista,regine@amberengine.com,regine@amberengine.com,The Review Rundown,,2022-09-26 12:59:32,,,,,,,G2 +1727,Anubhav Gera,anubhav.gera@twixor.com,anubhav.gera@twixor.com,Profile Performance & Lead Management,,2022-09-26 07:15:27,,,,,,,G2 +1728,Anubhav Gera,anubhav.gera@twixor.com,anubhav.gera@twixor.com,Review Tracking & Brand Building,,2022-09-26 07:15:27,,,,,,,G2 +1729,Anubhav Gera,anubhav.gera@twixor.com,anubhav.gera@twixor.com,G2 Profile Anatomy,,2022-09-26 07:15:27,,,,,,,G2 +1730,Anubhav Gera,anubhav.gera@twixor.com,anubhav.gera@twixor.com,The Review Rundown,,2022-09-26 07:15:27,,,,,,,G2 +1731,Vincent chen,vincent@illasoft.com,vincent@illasoft.com,The Review Rundown,,2022-09-26 02:47:02,,,,,,,G2 +1732,Vincent chen,vincent@illasoft.com,vincent@illasoft.com,Review Tracking & Brand Building,,2022-09-26 02:47:02,,,,,,,G2 +1733,Vincent chen,vincent@illasoft.com,vincent@illasoft.com,G2 Profile Anatomy,,2022-09-26 02:47:02,,,,,,,G2 +1734,Vincent chen,vincent@illasoft.com,vincent@illasoft.com,Profile Performance & Lead Management,,2022-09-26 02:47:02,,,,,,,G2 +1735,Sharath Jagadish,sjagadish@g2.com,sjagadish@g2.com,What is the G2 Content Subscription?,9,2022-09-25 16:41:19,2022-09-25 16:41:20,,1,11%, What’s Included with the Content Subscription,2022-09-26 05:34:08,G2 +1736,Sharath Jagadish,sjagadish@g2.com,sjagadish@g2.com,G2 Profile Anatomy,,2022-09-25 16:30:34,,,,,,,G2 +1737,Sharath Jagadish,sjagadish@g2.com,sjagadish@g2.com,Profile Performance & Lead Management,,2022-09-25 16:30:34,,,,,,,G2 +1738,Sharath Jagadish,sjagadish@g2.com,sjagadish@g2.com,The Review Rundown,,2022-09-25 16:30:34,,,,,,,G2 +1739,Sharath Jagadish,sjagadish@g2.com,sjagadish@g2.com,Review Tracking & Brand Building,,2022-09-25 16:30:34,,,,,,,G2 +1740,Jacob DeVoogd,jdevoogd@g2.com,jdevoogd@g2.com,The Review Rundown,,2022-09-23 20:54:50,,,,,,,G2 +1741,Jacob DeVoogd,jdevoogd@g2.com,jdevoogd@g2.com,Profile Performance & Lead Management,,2022-09-23 20:54:50,,,,,,,G2 +1742,Jacob DeVoogd,jdevoogd@g2.com,jdevoogd@g2.com,G2 Profile Anatomy,,2022-09-23 20:54:50,,,,,,,G2 +1743,Jacob DeVoogd,jdevoogd@g2.com,jdevoogd@g2.com,Review Tracking & Brand Building,,2022-09-23 20:54:50,,,,,,,G2 +1744,Scott Julio,sjulio@g2crowd.com,sjulio@g2crowd.com,The Review Rundown,,2022-09-23 14:06:05,,,,,,,G2 +1745,Scott Julio,sjulio@g2crowd.com,sjulio@g2crowd.com,Review Tracking & Brand Building,,2022-09-23 14:06:05,,,,,,,G2 +1746,Scott Julio,sjulio@g2crowd.com,sjulio@g2crowd.com,G2 Profile Anatomy,,2022-09-23 14:06:05,,,,,,,G2 +1747,Scott Julio,sjulio@g2crowd.com,sjulio@g2crowd.com,Profile Performance & Lead Management,,2022-09-23 14:06:05,,,,,,,G2 +1748,Austin Holgate,aholgate@g2.com,aholgate@g2.com,Review Tracking & Brand Building,,2022-09-23 13:19:25,,,,,,,G2 +1749,Austin Holgate,aholgate@g2.com,aholgate@g2.com,Profile Performance & Lead Management,,2022-09-23 13:19:25,,,,,,,G2 +1750,Austin Holgate,aholgate@g2.com,aholgate@g2.com,The Review Rundown,,2022-09-23 13:19:25,,,,,,,G2 +1751,Austin Holgate,aholgate@g2.com,aholgate@g2.com,G2 Profile Anatomy,,2022-09-23 13:19:25,,,,,,,G2 +1752,Valentyn Kucherenko,valentyn.kucherenko@gmail.com,valentyn.kucherenko@gmail.com,The Review Rundown,,2022-09-23 12:39:41,,,,,,,G2 +1753,Valentyn Kucherenko,valentyn.kucherenko@gmail.com,valentyn.kucherenko@gmail.com,Review Tracking & Brand Building,,2022-09-23 12:39:41,,,,,,,G2 +1754,Valentyn Kucherenko,valentyn.kucherenko@gmail.com,valentyn.kucherenko@gmail.com,G2 Profile Anatomy,,2022-09-23 12:39:41,,,,,,,G2 +1755,Valentyn Kucherenko,valentyn.kucherenko@gmail.com,valentyn.kucherenko@gmail.com,Profile Performance & Lead Management,,2022-09-23 12:39:41,,,,,,,G2 +1756,Shivi Rastogi,rastogishivi99@gmail.com,rastogishivi99@gmail.com,G2 Profile Anatomy,,2022-09-23 05:57:05,,,,,,,G2 +1757,Shivi Rastogi,rastogishivi99@gmail.com,rastogishivi99@gmail.com,Profile Performance & Lead Management,,2022-09-23 05:57:05,,,,,,,G2 +1758,Shivi Rastogi,rastogishivi99@gmail.com,rastogishivi99@gmail.com,The Review Rundown,,2022-09-23 05:57:05,,,,,,,G2 +1759,Shivi Rastogi,rastogishivi99@gmail.com,rastogishivi99@gmail.com,Review Tracking & Brand Building,,2022-09-23 05:57:05,,,,,,,G2 +1760,Jeremy Kelderman,jeremy.kelderman@skilljar.com,jeremy.kelderman@skilljar.com,Review Tracking & Brand Building,LIVE,2022-09-23 04:27:00,2022-09-23 04:27:51,,1,0%,,,G2 +1761,Jeremy Kelderman,jeremy.kelderman@skilljar.com,jeremy.kelderman@skilljar.com,Profile Performance & Lead Management,,2022-09-23 04:27:00,,,,,,,G2 +1762,Jeremy Kelderman,jeremy.kelderman@skilljar.com,jeremy.kelderman@skilljar.com,The Review Rundown,11,2022-09-23 04:27:00,2022-09-23 04:28:03,,1,0%,,,G2 +1763,Jeremy Kelderman,jeremy.kelderman@skilljar.com,jeremy.kelderman@skilljar.com,G2 Profile Anatomy,,2022-09-23 04:27:00,,,,,,,G2 +1764,Praveen Simon,praveensimon94@gmail.com,praveensimon94@gmail.com,Review Tracking & Brand Building,,2022-09-23 03:51:27,,,,,,,G2 +1765,Praveen Simon,praveensimon94@gmail.com,praveensimon94@gmail.com,G2 Profile Anatomy,,2022-09-23 03:51:27,,,,,,,G2 +1766,Praveen Simon,praveensimon94@gmail.com,praveensimon94@gmail.com,The Review Rundown,,2022-09-23 03:51:27,,,,,,,G2 +1767,Praveen Simon,praveensimon94@gmail.com,praveensimon94@gmail.com,Profile Performance & Lead Management,,2022-09-23 03:51:27,,,,,,,G2 +1768,Annie Jackson,ajackson@reviewtrackers.com,ajackson@reviewtrackers.com,Review Tracking & Brand Building,,2022-09-22 20:52:41,,,,,,,G2 +1769,Annie Jackson,ajackson@reviewtrackers.com,ajackson@reviewtrackers.com,The Review Rundown,,2022-09-22 20:52:41,,,,,,,G2 +1770,Annie Jackson,ajackson@reviewtrackers.com,ajackson@reviewtrackers.com,Profile Performance & Lead Management,,2022-09-22 20:52:41,,,,,,,G2 +1771,Annie Jackson,ajackson@reviewtrackers.com,ajackson@reviewtrackers.com,G2 Profile Anatomy,,2022-09-22 20:52:41,,,,,,,G2 +1772,Victoria Salzwedel,vsalzwedel2@gmail.com,vsalzwedel2@gmail.com,G2 Profile Anatomy,20,2022-09-22 15:49:25,2022-09-22 15:49:36,2022-09-22 16:11:28,1,100%,Seller Provided Content,2022-09-22 16:11:28,G2 +1773,Victoria Salzwedel,vsalzwedel2@gmail.com,vsalzwedel2@gmail.com,The Review Rundown,11,2022-09-22 15:49:25,2022-09-22 15:50:04,,1,0%,,,G2 +1774,Victoria Salzwedel,vsalzwedel2@gmail.com,vsalzwedel2@gmail.com,Review Tracking & Brand Building,LIVE,2022-09-22 15:49:25,2022-09-22 16:10:48,,1,0%,,,G2 +1775,Victoria Salzwedel,vsalzwedel2@gmail.com,vsalzwedel2@gmail.com,Profile Performance & Lead Management,LIVE,2022-09-22 15:49:25,2022-09-22 16:06:10,2022-09-22 16:06:29,1,100%,Lead Webhooks,2022-09-22 16:06:29,G2 +1776,Davide Gusmano,davide.gusmano@docebo.com,davide.gusmano@docebo.com,The Review Rundown,,2022-09-22 12:10:13,,,,,,,G2 +1777,Davide Gusmano,davide.gusmano@docebo.com,davide.gusmano@docebo.com,Profile Performance & Lead Management,,2022-09-22 12:10:13,,,,,,,G2 +1778,Davide Gusmano,davide.gusmano@docebo.com,davide.gusmano@docebo.com,Review Tracking & Brand Building,,2022-09-22 12:10:13,,,,,,,G2 +1779,Davide Gusmano,davide.gusmano@docebo.com,davide.gusmano@docebo.com,G2 Profile Anatomy,,2022-09-22 12:10:13,,,,,,,G2 +1780,Kenny Browne,kennyb5000@yahoo.com,kennyb5000@yahoo.com,The Review Rundown,11,2022-09-21 18:30:46,2022-09-21 18:31:01,,1,0%,,,G2 +1781,Kenny Browne,kennyb5000@yahoo.com,kennyb5000@yahoo.com,G2 Profile Anatomy,,2022-09-21 18:30:46,,,,,,,G2 +1782,Kenny Browne,kennyb5000@yahoo.com,kennyb5000@yahoo.com,Review Tracking & Brand Building,,2022-09-21 18:30:46,,,,,,,G2 +1783,Kenny Browne,kennyb5000@yahoo.com,kennyb5000@yahoo.com,Profile Performance & Lead Management,,2022-09-21 18:30:46,,,,,,,G2 +1784,Katlin Hess,khess@g2.com,khess@g2.com,Preparing for G2 Reports,LIVE,2022-09-21 13:59:22,2022-09-26 14:27:41,,2,29%,Draft Release,2022-10-31 19:27:54,G2 +1785,Katlin Hess,khess@g2.com,khess@g2.com,Preparing for G2 Reports,2,2022-09-21 13:59:22,2022-09-21 13:59:23,2022-09-21 13:59:40,1,13%,Review Deadline Announcement,2022-09-21 13:59:40,G2 +1786,Anna Zhuk,azhuk@g2.com,azhuk@g2.com,Review Tracking & Brand Building,,2022-09-20 21:21:43,,,,,,,G2 +1787,Anna Zhuk,azhuk@g2.com,azhuk@g2.com,The Review Rundown,,2022-09-20 21:21:43,,,,,,,G2 +1788,Anna Zhuk,azhuk@g2.com,azhuk@g2.com,Profile Performance & Lead Management,,2022-09-20 21:21:43,,,,,,,G2 +1789,Anna Zhuk,azhuk@g2.com,azhuk@g2.com,G2 Profile Anatomy,,2022-09-20 21:21:43,,,,,,,G2 +1790,Emma King,eking@g2.com,eking@g2.com,Review Tracking & Brand Building,,2022-09-20 19:50:24,,,,,,,G2 +1791,Emma King,eking@g2.com,eking@g2.com,G2 Profile Anatomy,,2022-09-20 19:50:24,,,,,,,G2 +1792,Emma King,eking@g2.com,eking@g2.com,The Review Rundown,,2022-09-20 19:50:24,,,,,,,G2 +1793,Emma King,eking@g2.com,eking@g2.com,Profile Performance & Lead Management,,2022-09-20 19:50:24,,,,,,,G2 +1794,Katlin Hess,hess@targetx.com,hess@targetx.com,Review Tracking & Brand Building,,2022-09-20 18:34:12,,,,,,,G2 +1795,Katlin Hess,hess@targetx.com,hess@targetx.com,G2 Profile Anatomy,,2022-09-20 18:34:12,,,,,,,G2 +1796,Katlin Hess,hess@targetx.com,hess@targetx.com,The Review Rundown,,2022-09-20 18:34:12,,,,,,,G2 +1797,Katlin Hess,hess@targetx.com,hess@targetx.com,Profile Performance & Lead Management,,2022-09-20 18:34:12,,,,,,,G2 +1798,Adrianna Lacarra,marketing@childcarecrm.com,marketing@childcarecrm.com,Profile Performance & Lead Management,,2022-09-20 17:09:32,,,,,,,G2 +1799,Adrianna Lacarra,marketing@childcarecrm.com,marketing@childcarecrm.com,G2 Profile Anatomy,,2022-09-20 17:09:32,,,,,,,G2 +1800,Adrianna Lacarra,marketing@childcarecrm.com,marketing@childcarecrm.com,The Review Rundown,,2022-09-20 17:09:32,,,,,,,G2 +1801,Adrianna Lacarra,marketing@childcarecrm.com,marketing@childcarecrm.com,Review Tracking & Brand Building,,2022-09-20 17:09:32,,,,,,,G2 +1802,Kirstin Powdrill,kpowdrill@g2.com,kpowdrill@g2.com,G2 Profile Anatomy,,2022-09-20 15:27:23,,,,,,,G2 +1803,Kirstin Powdrill,kpowdrill@g2.com,kpowdrill@g2.com,Profile Performance & Lead Management,,2022-09-20 15:27:23,,,,,,,G2 +1804,Kirstin Powdrill,kpowdrill@g2.com,kpowdrill@g2.com,The Review Rundown,,2022-09-20 15:27:23,,,,,,,G2 +1805,Kirstin Powdrill,kpowdrill@g2.com,kpowdrill@g2.com,Review Tracking & Brand Building,,2022-09-20 15:27:23,,,,,,,G2 +1806,Matthieu Le Sayec,mlesayec@g2.com,mlesayec@g2.com,The Review Rundown,,2022-09-20 15:17:09,,,,,,,G2 +1807,Matthieu Le Sayec,mlesayec@g2.com,mlesayec@g2.com,G2 Profile Anatomy,,2022-09-20 15:17:09,,,,,,,G2 +1808,Matthieu Le Sayec,mlesayec@g2.com,mlesayec@g2.com,Review Tracking & Brand Building,,2022-09-20 15:17:09,,,,,,,G2 +1809,Matthieu Le Sayec,mlesayec@g2.com,mlesayec@g2.com,Profile Performance & Lead Management,,2022-09-20 15:17:09,,,,,,,G2 +1810,Richie Sykes,rsykes@g2.com,rsykes@g2.com,G2 Profile Anatomy,,2022-09-20 15:14:15,,,,,,,G2 +1811,Richie Sykes,rsykes@g2.com,rsykes@g2.com,Review Tracking & Brand Building,,2022-09-20 15:14:15,,,,,,,G2 +1812,Richie Sykes,rsykes@g2.com,rsykes@g2.com,The Review Rundown,,2022-09-20 15:14:15,,,,,,,G2 +1813,Richie Sykes,rsykes@g2.com,rsykes@g2.com,Profile Performance & Lead Management,,2022-09-20 15:14:15,,,,,,,G2 +1814,Eric Wanchic,ewanchic@g2.com,ewanchic@g2.com,Profile Performance & Lead Management,,2022-09-20 15:14:07,,,,,,,G2 +1815,Eric Wanchic,ewanchic@g2.com,ewanchic@g2.com,The Review Rundown,,2022-09-20 15:14:07,,,,,,,G2 +1816,Eric Wanchic,ewanchic@g2.com,ewanchic@g2.com,Review Tracking & Brand Building,,2022-09-20 15:14:07,,,,,,,G2 +1817,Eric Wanchic,ewanchic@g2.com,ewanchic@g2.com,G2 Profile Anatomy,,2022-09-20 15:14:07,,,,,,,G2 +1818,Matt McGinley,mmcginley@g2.com,mmcginley@g2.com,Profile Performance & Lead Management,,2022-09-20 15:11:53,,,,,,,G2 +1819,Matt McGinley,mmcginley@g2.com,mmcginley@g2.com,G2 Profile Anatomy,,2022-09-20 15:11:53,,,,,,,G2 +1820,Matt McGinley,mmcginley@g2.com,mmcginley@g2.com,The Review Rundown,LIVE,2022-09-20 15:11:53,2022-10-25 18:37:06,,1,0%,,,G2 +1821,Matt McGinley,mmcginley@g2.com,mmcginley@g2.com,Review Tracking & Brand Building,,2022-09-20 15:11:53,,,,,,,G2 +1822,Clare Kennison,ckennison@g2.com,ckennison@g2.com,G2 Profile Anatomy,,2022-09-20 15:11:47,,,,,,,G2 +1823,Clare Kennison,ckennison@g2.com,ckennison@g2.com,Review Tracking & Brand Building,,2022-09-20 15:11:47,,,,,,,G2 +1824,Clare Kennison,ckennison@g2.com,ckennison@g2.com,The Review Rundown,,2022-09-20 15:11:47,,,,,,,G2 +1825,Clare Kennison,ckennison@g2.com,ckennison@g2.com,Profile Performance & Lead Management,,2022-09-20 15:11:47,,,,,,,G2 +1826,🌱 Daniella Alscher,alscherd@gmail.com,alscherd@gmail.com,The Review Rundown,,2022-09-20 15:09:09,,,,,,,G2 +1827,🌱 Daniella Alscher,alscherd@gmail.com,alscherd@gmail.com,G2 Profile Anatomy,,2022-09-20 15:09:09,,,,,,,G2 +1828,🌱 Daniella Alscher,alscherd@gmail.com,alscherd@gmail.com,Review Tracking & Brand Building,,2022-09-20 15:09:09,,,,,,,G2 +1829,🌱 Daniella Alscher,alscherd@gmail.com,alscherd@gmail.com,Profile Performance & Lead Management,,2022-09-20 15:09:09,,,,,,,G2 +1830,Erin Boyd,eboyd@g2.com,eboyd@g2.com,How to Respond to Reviews,LIVE,2022-09-20 11:20:04,2022-09-20 11:20:04,,1,8%,Unactionable Negative Reviews,2022-10-17 18:08:33,G2 +1831,Erin Boyd,eboyd@g2.com,eboyd@g2.com,G2 Profile Anatomy,20,2022-09-20 11:19:54,2022-09-26 17:37:27,,1,0%,,,G2 +1832,Erin Boyd,eboyd@g2.com,eboyd@g2.com,Profile Performance & Lead Management,,2022-09-20 11:19:54,,,,,,,G2 +1833,Erin Boyd,eboyd@g2.com,eboyd@g2.com,G2 Profile Anatomy,LIVE,2022-09-20 11:19:54,2022-11-14 16:45:27,,2,0%,,2022-11-14 16:45:28,G2 +1834,Erin Boyd,eboyd@g2.com,eboyd@g2.com,The Review Rundown,LIVE,2022-09-20 11:19:54,2022-09-30 14:18:57,,1,43%,Intro/4 Pillars,2022-09-30 14:19:40,G2 +1835,Erin Boyd,eboyd@g2.com,eboyd@g2.com,Review Tracking & Brand Building,,2022-09-20 11:19:54,,,,,,,G2 +1836,Michelle Hogue,michelle.hogue@a-lign.com,michelle.hogue@a-lign.com,The Review Rundown,11,2022-09-19 19:15:55,2022-09-19 19:16:04,,1,14%,Intro/4 Pillars,2022-09-19 19:16:49,G2 +1837,Michelle Hogue,michelle.hogue@a-lign.com,michelle.hogue@a-lign.com,Review Tracking & Brand Building,,2022-09-19 19:15:55,,,,,,,G2 +1838,Michelle Hogue,michelle.hogue@a-lign.com,michelle.hogue@a-lign.com,Profile Performance & Lead Management,,2022-09-19 19:15:55,,,,,,,G2 +1839,Michelle Hogue,michelle.hogue@a-lign.com,michelle.hogue@a-lign.com,G2 Profile Anatomy,,2022-09-19 19:15:55,,,,,,,G2 +1840,Tim Silber,tsilber@g2.com,tsilber@g2.com,The Review Rundown,,2022-09-19 17:52:47,,,,,,,G2 +1841,Tim Silber,tsilber@g2.com,tsilber@g2.com,Profile Performance & Lead Management,LIVE,2022-09-19 17:52:47,2022-09-28 13:48:46,,1,0%,,,G2 +1842,Tim Silber,tsilber@g2.com,tsilber@g2.com,G2 Profile Anatomy,20,2022-09-19 17:52:47,2022-09-28 13:48:15,,1,0%,,,G2 +1843,Tim Silber,tsilber@g2.com,tsilber@g2.com,Review Tracking & Brand Building,LIVE,2022-09-19 17:52:47,2022-11-07 18:24:15,,1,0%,,,G2 +1844,Adam Nelson,anelson@g2.com,anelson@g2.com,The Review Rundown,,2022-09-19 16:24:44,,,,,,,G2 +1845,Adam Nelson,anelson@g2.com,anelson@g2.com,G2 Profile Anatomy,,2022-09-19 16:24:44,,,,,,,G2 +1846,Adam Nelson,anelson@g2.com,anelson@g2.com,Profile Performance & Lead Management,,2022-09-19 16:24:44,,,,,,,G2 +1847,Adam Nelson,anelson@g2.com,anelson@g2.com,Review Tracking & Brand Building,,2022-09-19 16:24:44,,,,,,,G2 +1848,Rachael Bunn,rachael.bunn@toriihq.com,rachael.bunn@toriihq.com,The Review Rundown,,2022-09-19 15:54:01,,,,,,,G2 +1849,Rachael Bunn,rachael.bunn@toriihq.com,rachael.bunn@toriihq.com,G2 Profile Anatomy,,2022-09-19 15:54:01,,,,,,,G2 +1850,Rachael Bunn,rachael.bunn@toriihq.com,rachael.bunn@toriihq.com,Profile Performance & Lead Management,,2022-09-19 15:54:01,,,,,,,G2 +1851,Rachael Bunn,rachael.bunn@toriihq.com,rachael.bunn@toriihq.com,Review Tracking & Brand Building,,2022-09-19 15:54:01,,,,,,,G2 +1852,Allison Leach,aleach@g2.com,aleach@g2.com,Review Tracking & Brand Building,,2022-09-19 14:52:49,,,,,,,G2 +1853,Allison Leach,aleach@g2.com,aleach@g2.com,G2 Profile Anatomy,,2022-09-19 14:52:49,,,,,,,G2 +1854,Allison Leach,aleach@g2.com,aleach@g2.com,Profile Performance & Lead Management,,2022-09-19 14:52:49,,,,,,,G2 +1855,Allison Leach,aleach@g2.com,aleach@g2.com,The Review Rundown,,2022-09-19 14:52:49,,,,,,,G2 +1856,Shannon Howard,shannon.howard@peoplegrove.com,shannon.howard@peoplegrove.com,Profile Performance & Lead Management,,2022-09-19 14:22:19,,,,,,,G2 +1857,Shannon Howard,shannon.howard@peoplegrove.com,shannon.howard@peoplegrove.com,The Review Rundown,,2022-09-19 14:22:19,,,,,,,G2 +1858,Shannon Howard,shannon.howard@peoplegrove.com,shannon.howard@peoplegrove.com,Review Tracking & Brand Building,,2022-09-19 14:22:19,,,,,,,G2 +1859,Shannon Howard,shannon.howard@peoplegrove.com,shannon.howard@peoplegrove.com,G2 Profile Anatomy,,2022-09-19 14:22:19,,,,,,,G2 +1860,Robin Izsak-Tseng,rizsak-tseng@g2.com,rizsak-tseng@g2.com,Review Tracking & Brand Building,,2022-09-19 13:35:23,,,,,,,G2 +1861,Robin Izsak-Tseng,rizsak-tseng@g2.com,rizsak-tseng@g2.com,The Review Rundown,11,2022-09-19 13:35:23,2022-09-19 13:51:50,,1,0%,,,G2 +1862,Robin Izsak-Tseng,rizsak-tseng@g2.com,rizsak-tseng@g2.com,Profile Performance & Lead Management,LIVE,2022-09-19 13:35:23,2022-09-19 13:35:45,,1,0%,,,G2 +1863,Robin Izsak-Tseng,rizsak-tseng@g2.com,rizsak-tseng@g2.com,G2 Profile Anatomy,,2022-09-19 13:35:23,,,,,,,G2 +1864,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,How to Use Buyer Intent,6,2022-09-18 19:05:15,2022-09-18 19:05:16,,1,13%,Considerations,2022-09-18 19:05:54,G2 +1865,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,Buyer Intent Basics,4,2022-09-16 16:14:17,2022-09-16 16:14:18,,1,0%,,,G2 +1866,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,How to Respond to Reviews,3,2022-09-16 16:10:17,2022-09-16 16:10:17,,1,0%,,,G2 +1867,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,What is the G2 Content Subscription?,8,2022-09-16 16:08:41,2022-09-16 16:08:41,,1,10%,Report Data Comparison,2022-09-16 16:08:54,G2 +1868,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,Review Tracking & Brand Building,9,2022-09-16 01:46:52,2022-09-16 01:47:07,2022-09-16 01:47:17,1,100%,Review Integrations,2022-09-16 01:47:18,G2 +1869,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,The Review Rundown,10,2022-09-16 01:46:52,2022-09-16 01:48:00,,1,43%,Intro/4 Pillars,2022-09-16 01:48:07,G2 +1870,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,Profile Performance & Lead Management,LIVE,2022-09-16 01:46:52,2022-09-16 01:47:29,2022-09-16 01:47:41,1,100%,Lead Webhooks,2022-09-16 01:47:41,G2 +1871,Katlin Hess,katlin.hess@phenompeople.com,katlin.hess@phenompeople.com,G2 Profile Anatomy,20,2022-09-16 01:46:52,2022-09-16 02:18:12,,1,0%,,,G2 +1872,Anna Charity,acharity@g2.com,acharity@g2.com,Profile Performance & Lead Management,,2022-09-13 16:16:52,,,,,,,G2 +1873,Anna Charity,acharity@g2.com,acharity@g2.com,The Review Rundown,,2022-09-13 16:16:52,,,,,,,G2 +1874,Anna Charity,acharity@g2.com,acharity@g2.com,G2 Profile Anatomy,,2022-09-13 16:16:52,,,,,,,G2 +1875,Anna Charity,acharity@g2.com,acharity@g2.com,Review Tracking & Brand Building,,2022-09-13 16:16:52,,,,,,,G2 +1876,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,What is the G2 Content Subscription?,3,2022-08-29 21:29:51,2022-08-29 21:29:52,,1,0%,,,G2 +1877,Pawel Galusza,pgalusza@g2.com,pgalusza@g2.com,Profile Performance & Lead Management,5,2022-08-19 15:29:11,2022-08-19 16:10:15,,1,0%,,,G2 +1878,Pawel Galusza,pgalusza@g2.com,pgalusza@g2.com,Review Tracking & Brand Building,3,2022-08-19 15:29:11,2022-08-19 16:10:30,,1,0%,,,G2 +1879,Pawel Galusza,pgalusza@g2.com,pgalusza@g2.com,G2 Profile Anatomy,4,2022-08-19 15:29:11,2022-08-19 16:08:24,,1,0%,,,G2 +1880,Pawel Galusza,pgalusza@g2.com,pgalusza@g2.com,The Review Rundown,2,2022-08-19 15:29:11,2022-08-19 16:10:40,,1,0%,,,G2 +1881,Victoria Salzwedel,vsalzwedel@g2.com,vsalzwedel@g2.com,The Review Rundown,,2022-08-18 18:53:01,,,,,,,G2 +1882,Victoria Salzwedel,vsalzwedel@g2.com,vsalzwedel@g2.com,Profile Performance & Lead Management,3,2022-08-18 18:53:01,2022-08-18 18:53:25,2022-08-18 18:55:49,1,100%,What you'll need,2022-08-18 18:55:49,G2 +1883,Victoria Salzwedel,vsalzwedel@g2.com,vsalzwedel@g2.com,G2 Profile Anatomy,4,2022-08-18 18:53:01,2022-08-18 18:53:07,,1,0%,,,G2 +1884,Victoria Salzwedel,vsalzwedel@g2.com,vsalzwedel@g2.com,Review Tracking & Brand Building,,2022-08-18 18:53:01,,,,,,,G2 +1885,Katlin Hess,khess@g2.com,khess@g2.com,What is the G2 Content Subscription?,1,2022-08-18 14:07:37,2022-08-18 14:07:38,2022-08-18 14:08:02,1,100%,Infographics,2022-08-18 14:08:02,G2 +1886,travis buckley,tbuckley+1@g2.com,tbuckley+1@g2.com,Review Tracking & Brand Building,,2022-08-18 13:47:39,,,,,,,G2 +1887,travis buckley,tbuckley+1@g2.com,tbuckley+1@g2.com,G2 Profile Anatomy,4,2022-08-18 13:47:39,2022-08-18 13:47:44,2022-08-18 13:48:56,1,100%,Top Tips Recap,2022-08-18 13:48:56,G2 +1888,travis buckley,tbuckley+1@g2.com,tbuckley+1@g2.com,The Review Rundown,,2022-08-18 13:47:39,,,,,,,G2 +1889,travis buckley,tbuckley+1@g2.com,tbuckley+1@g2.com,Profile Performance & Lead Management,,2022-08-18 13:47:39,,,,,,,G2 +1890,Kevin Janssen,kjanssen@g2.com,kjanssen@g2.com,The Review Rundown,,2022-08-18 13:37:11,,,,,,,G2 +1891,Kevin Janssen,kjanssen@g2.com,kjanssen@g2.com,Profile Performance & Lead Management,6,2022-08-18 13:37:11,2022-08-23 17:49:45,2022-08-23 17:50:08,2,100%,CTA + Free Analytics,2022-08-23 17:50:08,G2 +1892,Kevin Janssen,kjanssen@g2.com,kjanssen@g2.com,Review Tracking & Brand Building,LIVE,2022-08-18 13:37:11,2022-09-19 14:09:43,,1,0%,,,G2 +1893,Kevin Janssen,kjanssen@g2.com,kjanssen@g2.com,Profile Performance & Lead Management,3,2022-08-18 13:37:11,2022-08-18 13:39:46,2022-08-18 13:40:12,1,100%,Course overview,2022-08-18 13:40:12,G2 +1894,Kevin Janssen,kjanssen@g2.com,kjanssen@g2.com,G2 Profile Anatomy,9,2022-08-18 13:37:11,2022-08-23 17:49:29,,1,17%,What is the Value of a G2 Profile?,2022-08-23 17:49:34,G2 +1895,Vincent Goyette,vgoyette@g2.com,vgoyette@g2.com,G2 Profile Anatomy,4,2022-08-16 15:50:49,2022-08-18 17:56:12,2022-08-18 18:00:06,1,100%,Top Tips Recap,2022-08-18 18:00:06,G2 +1896,Vincent Goyette,vgoyette@g2.com,vgoyette@g2.com,Profile Performance & Lead Management,,2022-08-16 15:50:49,,,,,,,G2 +1897,Vincent Goyette,vgoyette@g2.com,vgoyette@g2.com,The Review Rundown,,2022-08-16 15:50:49,,,,,,,G2 +1898,Vincent Goyette,vgoyette@g2.com,vgoyette@g2.com,Review Tracking & Brand Building,,2022-08-16 15:50:49,,,,,,,G2 +1899,Michael Puglielli,mpuglielli@g2.com,mpuglielli@g2.com,The Review Rundown,11,2022-07-27 14:15:24,2022-09-22 19:42:43,,1,0%,,,G2 +1900,Michael Puglielli,mpuglielli@g2.com,mpuglielli@g2.com,Profile Performance & Lead Management,LIVE,2022-07-27 14:15:24,2022-09-16 17:55:02,,1,0%,,,G2 +1901,Michael Puglielli,mpuglielli@g2.com,mpuglielli@g2.com,Review Tracking & Brand Building,,2022-07-27 14:15:24,,,,,,,G2 +1902,Michael Puglielli,mpuglielli@g2.com,mpuglielli@g2.com,G2 Profile Anatomy,20,2022-07-27 14:15:24,2022-09-23 13:27:28,,1,0%,,,G2 +1903,Easton Johns,daisha.kuhlman@twinbash.co,daisha.kuhlman@twinbash.co,Review Tracking & Brand Building,,2022-07-07 13:30:34,,,,,,,G2 +1904,Easton Johns,daisha.kuhlman@twinbash.co,daisha.kuhlman@twinbash.co,G2 Profile Anatomy,,2022-07-07 13:30:34,,,,,,,G2 +1905,Easton Johns,daisha.kuhlman@twinbash.co,daisha.kuhlman@twinbash.co,Profile Performance & Lead Management,,2022-07-07 13:30:34,,,,,,,G2 +1906,Easton Johns,daisha.kuhlman@twinbash.co,daisha.kuhlman@twinbash.co,The Review Rundown,,2022-07-07 13:30:34,,,,,,,G2 +1907,Dave Mose,rixoxor856@about27.com,rixoxor856@about27.com,Review Tracking & Brand Building,,2022-05-28 15:36:16,,,,,,,G2 +1908,Dave Mose,rixoxor856@about27.com,rixoxor856@about27.com,Profile Performance & Lead Management,,2022-05-28 15:36:16,,,,,,,G2 +1909,Dave Mose,rixoxor856@about27.com,rixoxor856@about27.com,G2 Profile Anatomy,,2022-05-28 15:36:16,,,,,,,G2 +1910,Dave Mose,rixoxor856@about27.com,rixoxor856@about27.com,The Review Rundown,,2022-05-28 15:36:16,,,,,,,G2 +1911,Northpass Tester,northpass_test@test.com,northpass_test@test.com,The Review Rundown,,2022-03-24 19:42:32,,,,,,,G2 +1912,Northpass Tester,northpass_test@test.com,northpass_test@test.com,Profile Performance & Lead Management,,2022-03-24 19:42:32,,,,,,,G2 +1913,Northpass Tester,northpass_test@test.com,northpass_test@test.com,G2 Profile Anatomy,4,2022-03-24 19:42:32,2022-03-28 17:45:24,,1,0%,,,G2 +1914,Northpass Tester,northpass_test@test.com,northpass_test@test.com,Review Tracking & Brand Building,,2022-03-24 19:42:32,,,,,,,G2 +1915,Shawn Wheeler,shawnrwheeler@gmail.com,shawnrwheeler@gmail.com,The Review Rundown,,2022-03-17 19:51:52,,,,,,,G2 +1916,Shawn Wheeler,shawnrwheeler@gmail.com,shawnrwheeler@gmail.com,G2 Profile Anatomy,,2022-03-17 19:51:52,,,,,,,G2 +1917,Shawn Wheeler,shawnrwheeler@gmail.com,shawnrwheeler@gmail.com,Profile Performance & Lead Management,,2022-03-17 19:51:52,,,,,,,G2 +1918,Shawn Wheeler,shawnrwheeler@gmail.com,shawnrwheeler@gmail.com,Review Tracking & Brand Building,,2022-03-17 19:51:52,,,,,,,G2 +1919,Joseph Park,josephpaulpark@gmail.com,josephpaulpark@gmail.com,Review Tracking & Brand Building,,2022-03-17 14:39:48,,,,,,,G2 +1920,Joseph Park,josephpaulpark@gmail.com,josephpaulpark@gmail.com,Profile Performance & Lead Management,3,2022-03-17 14:39:48,2022-03-17 14:43:09,,1,0%,,,G2 +1921,Joseph Park,josephpaulpark@gmail.com,josephpaulpark@gmail.com,G2 Profile Anatomy,,2022-03-17 14:39:48,,,,,,,G2 +1922,Joseph Park,josephpaulpark@gmail.com,josephpaulpark@gmail.com,The Review Rundown,,2022-03-17 14:39:48,,,,,,,G2 +1923,,jpark@g2.com,jpark@g2.com,The Review Rundown,,2022-03-04 15:16:56,,,,,,,G2 +1924,Katlin Hess,khess@g2.com,khess@g2.com,G2 Profile Anatomy,20,2022-03-04 15:16:56,2022-09-22 18:39:59,2022-11-07 19:48:28,4,50%,Seller Provided Content,2022-11-07 19:48:28,G2 +1925,Katlin Hess,khess@g2.com,khess@g2.com,The Review Rundown,4,2022-03-04 15:16:56,2022-08-22 18:25:34,,2,57%,Types of G2 Review Generation,2022-08-22 19:14:14,G2 +1926,travis buckley,tbuckley@g2.com,tbuckley@g2.com,G2 Profile Anatomy,4,2022-03-04 15:16:56,2022-03-16 20:20:00,2022-03-22 13:13:44,2,100%,Top Tips Recap,2022-03-22 13:13:44,G2 +1927,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,G2 Profile Anatomy,6,2022-03-04 15:16:56,2022-08-19 18:08:15,,1,0%,,,G2 +1928,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,Review Tracking & Brand Building,,2022-03-04 15:16:56,,,,,,,G2 +1929,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,The Review Rundown,,2022-03-04 15:16:56,,,,,,,G2 +1930,Katlin Hess,khess@g2.com,khess@g2.com,Profile Performance & Lead Management,8,2022-03-04 15:16:56,2022-09-14 14:12:56,,2,0%,,,G2 +1931,Katlin Hess,khess@g2.com,khess@g2.com,Review Tracking & Brand Building,LIVE,2022-03-04 15:16:56,2022-09-21 13:58:49,2022-10-31 15:40:22,2,100%,Review Integrations,2022-10-31 15:40:22,G2 +1932,Katlin Hess,khess@g2.com,khess@g2.com,G2 Profile Anatomy,LIVE,2022-03-04 15:16:56,2022-11-15 15:45:00,,5,5%,What is the Value of a G2 Profile?,2022-11-15 15:45:14,G2 +1933,Katlin Hess,khess@g2.com,khess@g2.com,Profile Performance & Lead Management,LIVE,2022-03-04 15:16:56,2022-10-31 15:40:35,2022-10-31 19:26:32,3,100%,Lead Webhooks,2022-10-31 19:26:32,G2 +1934,Katlin Hess,khess@g2.com,khess@g2.com,The Review Rundown,2,2022-03-04 15:16:56,2022-08-18 14:06:21,,1,0%,,,G2 +1935,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,G2 Profile Anatomy,9,2022-03-04 15:16:56,2022-08-29 21:33:57,,2,0%,,,G2 +1936,,jpark@g2.com,jpark@g2.com,G2 Profile Anatomy,,2022-03-04 15:16:56,,,,,,,G2 +1937,travis buckley,tbuckley@g2.com,tbuckley@g2.com,Review Tracking & Brand Building,2,2022-03-04 15:16:56,2022-03-22 14:20:41,,1,0%,,,G2 +1938,Katlin Hess,khess@g2.com,khess@g2.com,G2 Profile Anatomy,7,2022-03-04 15:16:56,2022-08-22 18:22:16,,2,0%,,,G2 +1939,Charles McGovern,charlesmcgovern3@gmail.com,charlesmcgovern3@gmail.com,The Review Rundown,,2022-03-04 15:16:56,,,,,,,G2 +1940,Michele Popadich,mpopadich@g2.com,mpopadich@g2.com,Profile Performance & Lead Management,,2022-03-04 15:16:56,,,,,,,G2 +1941,travis buckley,tbuckley@g2.com,tbuckley@g2.com,G2 Profile Anatomy,3,2022-03-04 15:16:56,2022-03-11 17:46:36,2022-03-11 17:47:19,1,16%,What is the value of a G2 Profile?,2022-03-11 17:47:19,G2 +1942,Katlin Hess,khess@g2.com,khess@g2.com,Profile Performance & Lead Management,3,2022-03-04 15:16:56,2022-08-18 14:05:51,2022-08-18 14:06:09,1,100%,What you'll need,2022-08-18 14:06:09,G2 +1943,,jpark@g2.com,jpark@g2.com,Profile Performance & Lead Management,,2022-03-04 15:16:56,,,,,,,G2 +1944,Katlin Hess,khess@g2.com,khess@g2.com,Review Tracking & Brand Building,4,2022-03-04 15:16:56,2022-08-22 19:14:54,2022-08-22 19:15:03,1,20%,Review Activity,2022-08-22 19:15:03,G2 +1945,,rmorris@g2.com,rmorris@g2.com,G2 Profile Anatomy,,2022-03-04 15:16:56,,,,,,,G2 +1946,travis buckley,tbuckley@g2.com,tbuckley@g2.com,The Review Rundown,2,2022-03-04 15:16:56,2022-03-22 14:21:02,,1,0%,,,G2 +1947,Charles McGovern,charlesmcgovern3@gmail.com,charlesmcgovern3@gmail.com,Review Tracking & Brand Building,,2022-03-04 15:16:56,,,,,,,G2 +1948,travis buckley,tbuckley@g2.com,tbuckley@g2.com,Profile Performance & Lead Management,3,2022-03-04 15:16:56,2022-03-22 14:10:21,2022-03-22 14:12:13,1,50%,What you'll need,2022-03-22 14:12:13,G2 +1949,Charles McGovern,charlesmcgovern3@gmail.com,charlesmcgovern3@gmail.com,Profile Performance & Lead Management,,2022-03-04 15:16:56,,,,,,,G2 +1950,,rmorris@g2.com,rmorris@g2.com,Review Tracking & Brand Building,,2022-03-04 15:16:56,,,,,,,G2 +1951,,rmorris@g2.com,rmorris@g2.com,The Review Rundown,,2022-03-04 15:16:56,,,,,,,G2 +1952,travis buckley,tbuckley@g2.com,tbuckley@g2.com,Profile Performance & Lead Management,6,2022-03-04 15:16:56,2022-08-23 17:04:50,2022-08-23 17:05:09,2,100%,Lead Webhooks,2022-08-23 17:05:09,G2 +1953,Katlin Hess,khess@g2.com,khess@g2.com,G2 Profile Anatomy,4,2022-03-04 15:16:56,2022-06-21 14:51:49,,1,0%,,,G2 +1954,Charles McGovern,charlesmcgovern3@gmail.com,charlesmcgovern3@gmail.com,G2 Profile Anatomy,4,2022-03-04 15:16:56,2022-06-15 00:24:39,,1,0%,,,G2 +1955,,rmorris@g2.com,rmorris@g2.com,Profile Performance & Lead Management,,2022-03-04 15:16:56,,,,,,,G2 +1956,Katlin Hess,khess@g2.com,khess@g2.com,G2 Profile Anatomy,9,2022-03-04 15:16:56,2022-08-26 17:02:57,,3,0%,,,G2 +1957,,jpark@g2.com,jpark@g2.com,Review Tracking & Brand Building,,2022-03-04 15:16:56,,,,,,,G2 +1958,Demo Northpass,northpass@g2.com,,Profile Performance & Lead Management,,2022-01-26 19:07:25,,,,,,,G2 +1959,Demo Northpass,northpass@g2.com,,The Review Rundown,,2022-01-26 19:07:24,,,,,,,G2 +1960,Demo Northpass,northpass@g2.com,,Review Tracking & Brand Building,,2022-01-26 19:07:24,,,,,,,G2 +1961,Demo Northpass,northpass@g2.com,,G2 Profile Anatomy,3,2022-01-26 19:07:24,2022-02-28 20:58:09,,1,0%,,,G2 diff --git a/Timetagger/_timetagger/users/norm~bm9ybQ==.db b/Timetagger/_timetagger/users/norm~bm9ybQ==.db index 283c2a05..37c3edc8 100644 Binary files a/Timetagger/_timetagger/users/norm~bm9ybQ==.db and b/Timetagger/_timetagger/users/norm~bm9ybQ==.db differ diff --git a/Todos.md b/Todos.md index f4b40537..79c498cf 100644 --- a/Todos.md +++ b/Todos.md @@ -4,36 +4,36 @@ * [ ] (Talkspace) [10/27/2022] Turn on Workflows for Talkspace BBHR * [ ] (Talkspace) [10/27/2022] Get designs for Learning Path Customization & we can talk about categories * [ ] (Talkspace) [10/27/2022] Password protection for a course when prompted. -* [ ] (Talkspace) [10/27/2022] See if in NPP school we can remove/delete not activated people. -* [ ] (Talkspace) [10/27/2022] Pull report of all users in NPP with activated/deactived status +* [X] (Talkspace) [10/27/2022] See if in NPP school we can remove/delete not activated people. +* [X] (Talkspace) [10/27/2022] Pull report of all users in NPP with activated/deactived status * [ ] (Wildhealth) [10/31/2022] Pass PTO information onto Brian so he knows about the support tickets from Baeleigh & WildHealth. -* [ ] (Wildhealth) [10/31/2022] Update Branding on WPG - Abby to send new logo and Norm to figure out colors/branding for styling. -* [-] (Aiim) [11/08/2022] Send DV Accredible Interface with Badging and Certs. Aiim uses accredible. +* [X] (Wildhealth) [10/31/2022] Update Branding on WPG - Abby to send new logo and Norm to figure out colors/branding for styling. +* [X] (Aiim) [11/08/2022] Send DV Accredible Interface with Badging and Certs. Aiim uses accredible. * [ ] (Aiim) [11/08/2022] Create a QBR report for next month's meeting. Analytics, product info. Review usage, etc. * [ ] (Amyris) [11/08/2022] Setup Quarterly Looker Pull of MCA to be sent to Nicole. Year to Date, MCA. Next one in January. -* [ ] (SwiftMedical) [11/08/2022] Create Tabs & categories on catalog page - deciding on design. +* [X] (SwiftMedical) [11/08/2022] Create Tabs & categories on catalog page - deciding on design. * [ ] (Talkspace) [11/08/2022] If a course a is at 100% and is a 1099 course, remove from dashboard * [ ] (Talkspace) [11/08/2022] Remove Footer Completely no Dash no LPs * [ ] (Talkspace) [11/08/2022] Add Training@talkspace.com to footer * [ ] (Northpass) [11/09/2022] Start GrowthPass #6 -* [ ] (Northpass) [11/09/2022] Complete SOC 2 Training in Northpass University for employees. -* [ ] (PUK) [11/09/2022] Check if we need to amend and re-send the Psychiatry-UK Agreement based on the hold until end of February. -* [ ] (Northpass) [11/09/2022] Talk to prouct about updating the default admin invitation email content with support links, northpass academy, etc -* [ ] (SPSCommerce) [11/09/2022] Create some HTML design updates for under the normal cards on the training events page. -* [ ] (Skuid) [11/11/2022] Send Jessica questions about who is the super admin in Hubspot and ask her to setup a private or public app for our integrations. +* [X] (Northpass) [11/09/2022] Complete SOC 2 Training in Northpass University for employees. +* [X] (PUK) [11/09/2022] Check if we need to amend and re-send the Psychiatry-UK Agreement based on the hold until end of February. +* [X] (Northpass) [11/09/2022] Talk to prouct about updating the default admin invitation email content with support links, northpass academy, etc +* [X] (SPSCommerce) [11/09/2022] Create some HTML design updates for under the normal cards on the training events page. +* [X] (Skuid) [11/11/2022] Send Jessica questions about who is the super admin in Hubspot and ask her to setup a private or public app for our integrations. * [ ] (Skuid) [11/11/2022] Send Alexa the WildHealth Style report for each Learning Path as a test. -* [ ] (Skuid) [11/11/2022] Ask Chris to help with Learning Paths and Skuid Reports. +* [X] (Skuid) [11/11/2022] Ask Chris to help with Learning Paths and Skuid Reports. * [ ] (Zenjob) [11/11/2022] Ask if we can do a custom integration with Salesforce to send assignment submission pictures * [ ] (Zenjob) [11/11/2022] Can we pass information INTO a Typeform survey so that a learner doesn't have to enter their name? -* [ ] (Zenjob) [11/11/2022] Change Back to my courses to the correct german ([see notes](Zenjob.md)) and remove `/app/dashboards` link, it should go to `/app/courses` +* [X] (Zenjob) [11/11/2022] Change Back to my courses to the correct german ([see notes](Zenjob.md)) and remove `/app/dashboards` link, it should go to `/app/courses` * [ ] (Zenjob) [11/11/2022] Ask Sophie about Shopify integration details and what they want to accomplish with selling courses. * [ ] (Northpass) [11/11/2022] Submit ticket for a custom page creation in Northpass Academy that ONLY shows Admin Onboarding Courses. -* [ ] (JJSV) [11/14/2022] Contact us should go to a FORM not an email - remove link all together for now make it inactive -* [ ] (JJSV) [11/14/2022] Opt out for emails - Comms Changes -* [ ] (JJSV) [11/14/2022] Upload the second video to the properties for us to test for playability.If it works, Melinda can feel confident about future videos. +* [X] (JJSV) [11/14/2022] Contact us should go to a FORM not an email - remove link all together for now make it inactive +* [X] (JJSV) [11/14/2022] Opt out for emails - Comms Changes +* [X] (JJSV) [11/14/2022] Upload the second video to the properties for us to test for playability.If it works, Melinda can feel confident about future videos. * [ ] (JJSV) [11/14/2022] Update Registration Privacy Policy with Vision Pro Legal notice at "jnjvisionpro.com/legal-notice" * [ ] (JJSV) [11/14/2022] MAKE SURE YOU UPLOAD THE AUDIO STUFF TODAY! Upload podcasts to AWS and upload the SCORM so she has examples of both. * [ ] (TripleSeat) [11/15/2022] Get Brian ChurnZero information * [ ] (TripleSeat) [11/15/2022] Screenshots of AppCues Examples * [ ] (TripleSeat) [11/15/2022] Send Holly/Katie details of what needs to be done for embedding. -* [ ] (Talkspace) [11/15/2022] Create video showing how to setup a Webhook in Fountain for Molly and Taylor to talk to Gracie about. The goal is for a webhook to fire when someone completes a stage in Fountain that attests that they are seeing clients and that would enroll them in their appropriate group and courses. +* [X] (Talkspace) [11/15/2022] Create video showing how to setup a Webhook in Fountain for Molly and Taylor to talk to Gracie about. The goal is for a webhook to fire when someone completes a stage in Fountain that attests that they are seeing clients and that would enroll them in their appropriate group and courses.