-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
1813 lines (1432 loc) · 110 KB
/
index.xml
File metadata and controls
1813 lines (1432 loc) · 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Integration Agent - Get the most out of your marketing automation</title>
<link>https://integrationagent.com/index.xml</link>
<description>Recent content on Integration Agent - Get the most out of your marketing automation</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<copyright>Integration Agent 2016</copyright>
<lastBuildDate>Wed, 01 Feb 2017 11:22:38 -0600</lastBuildDate>
<atom:link href="https://integrationagent.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Use Cases</title>
<link>https://integrationagent.com/usecases</link>
<pubDate>Wed, 01 Feb 2017 11:22:38 -0600</pubDate>
<guid>https://integrationagent.com/usecases</guid>
<description>
<p>Integration Agent specializes in API and web development for HubSpot, Salesforce, Freshdesk.</p>
<h1 id="hubspot-api">HubSpot API</h1>
<h3 id="open-source-java-library-for-hubspot-api">Open Source Java Library for HubSpot API</h3>
<p>We&rsquo;ve opened a source code for our internal library, that we developed for HubSpot API.
It&rsquo;s used by other developers for HubSpot integrations.</p>
<p><a href="https://github.com/integrationagent/hubspot-java">https://github.com/integrationagent/hubspot-java</a></p>
<hr />
<h3 id="depositfix-payment-solution-for-hubspot">DepositFix – Payment Solution for HubSpot</h3>
<p>Our own app for HubSpot.</p>
<p>DepositFix allows to accept payments using your HubSpot forms and run marketing campaigns based on purchases.</p>
<ul>
<li>Accept payments directly from your website (PayPal or Credit Cards via Stripe)</li>
<li>Manage discounts</li>
<li>Run HubSpot workflows and campaigns based on payment events</li>
<li>Automate Upsells, Payment notifications, abandoned cart alerts</li>
</ul>
<p><a href="http://www.depositfix.com/">http://www.depositfix.com/</a></p>
<hr />
<h3 id="data-migration-from-access-db-to-hubspot">Data Migration from Access DB to HubSpot</h3>
<p>Extracted, transformed and uploaded contact data along with financial history to HubSpot.</p>
<hr />
<h3 id="data-merging-and-migration-from-3-different-crms-to-hubspot">Data merging and migration from 3 different CRMs to HubSpot</h3>
<p>Merging of a complex data structure with multiple conflicting data points. Developed a rule/priority based merging system and exported 10,000 contacts to HubSpot.</p>
<hr />
<h3 id="hubspot-paypal">HubSpot – PayPal</h3>
<p>Custom HubSpot event registration module. Displays a list of upcoming events and accepts payments via PayPal.</p>
<p><a href="https://www.ceramictilefoundation.org/events">https://www.ceramictilefoundation.org/events</a></p>
<hr />
<h3 id="hubspot-crm-webinar-registration">HubSpot CRM - Webinar Registration</h3>
<p>A system, that creates deals and moves through the pipeline depending on registration progress.</p>
<hr />
<h3 id="hubspot-pardot-bi-directional-sync">HubSpot – Pardot bi-directional sync</h3>
<p>It’s a recursive contact sync. The main problem here was to prevent possible collisions (when contact updated from the both systems in relatively the same time).</p>
<hr />
<h3 id="nanacast-payment-system-hubspot">Nanacast (payment system) – HubSpot</h3>
<p>This integration allows to add new subscribers from Nanacast to HubSpot and to see what exactly people buy and what campaigns work the best in terms of revenue.</p>
<hr />
<h3 id="hubspot-webinarjam">HubSpot – WebinarJam</h3>
<p>Custom landing page with a form to signup clients to specific webinars and assign to HubSpot lists.</p>
<hr />
<h3 id="hubspot-shopify">HubSpot – Shopify</h3>
<p>Update contact in HubSpot after purchase on Shopify store and assign to product related list.</p>
<hr />
<h3 id="hubspot-salesforce-custom-events">HubSpot – Salesforce custom events</h3>
<p>Send custom events generated by Apex classes to HubSpot for better segmenting.</p>
<hr />
<h3 id="hubspot-freshdesk">HubSpot – Freshdesk</h3>
<p>Extension for Freshdesk that displays context information about contact from HubSpot. Also, it’s possible to send some field updates back to HubSpot from the same widget.</p>
<hr />
<p><br></p>
<h1 id="salesforce">Salesforce</h1>
<h3 id="turbine-performance-calculation-engine">Turbine Performance Calculation Engine</h3>
<p>Complex application to calculate turbine parameters integrated with opportunities to help sales reps show potential turbine performance and close more deals.
Google Chrome Extension</p>
<hr />
<h3 id="invoice-system-for-landlords">Invoice System for landlords</h3>
<p>Developed a service to manage invoice and collect payments from tenants. Entirely based on Salesforce.</p>
<hr />
<p><br></p>
<h1 id="cos">COS</h1>
<h3 id="upcoming-webinars">Upcoming Webinars</h3>
<p>Added custom attribute (webinar expiration date) to webinar page, then on the list of webinars the webinars are sorted by expiration date and past webinars are automatically hidden.</p>
<p><a href="http://www.caddedge.com/upcoming-webinars">http://www.caddedge.com/upcoming-webinars</a></p>
<hr />
<h3 id="recorded-webinars">Recorded Webinars</h3>
<p>Multiple filters by product, feature, user experience.
For new visitors the page shows signup form, converted visitors can watch any webinars right away. Custom share buttons.</p>
<p><a href="http://www.caddedge.com/recorded-solidworks-webinars">http://www.caddedge.com/recorded-solidworks-webinars</a></p>
<hr />
<h3 id="form-with-autocomplete">Form with autocomplete</h3>
<p>Form, that provides autocomplete functionality for company field. On each typed key it sends request to Salesforce controller to return a list of accounts starting with keys typed.</p>
<hr />
<h3 id="timed-slide-in-form">Timed slide-in form</h3>
<p><a href="http://integrationagent.com/smart-forms-installation/">http://integrationagent.com/smart-forms-installation/</a></p>
<ul>
<li>Displayed at the right-bottom corner and doesn&rsquo;t block content</li>
<li>If a user closes the form – it wouldn&rsquo;t show up for the next 24 hours.</li>
<li>If a user submitted the form, the popup for this specific form will never be shown again.</li>
</ul>
<hr />
<p><br></p>
<h1 id="testimonials">Testimonials</h1>
<p>We contracted Integration Agent to help with a few Selective Sync campaigns between Salesforce and HubSpot.</p>
<p>Denis was able to provide quick turn arounds, troubleshooting, and explanations for what was being done and any problems that may arise in advance.</p>
<p>He made it easy to avoid major problems and was very professional and easy to work with throughout the implementation.</p>
<p><strong><em>Karri Scott / Sr. Digital Strategist, Runner Agency</em></strong></p>
<hr />
<p>We worked with Denis from Integration Agent in order to improve our customer support portal hosted on Freshdesk. Denis was quick to understand what we wanted to do and executed it in a timely manner.</p>
<p>Denis reacted quickly and efficiently when we requested changes. The communication with Denis was very easy, no need for pages long specification.</p>
<p>Highly recommended!</p>
<p><strong><em>Marc Journeux / President, Aitac</em></strong></p>
<hr />
<p>Denis with Integration Agent developed a Salesforce.com Performance Calculator tool for our microturbine electric generator products.</p>
<p>Denis was very professional and communicated clearly with us to finalize requirements and work through complex engineering calculations together.</p>
<p>The Performance Calculator tool has made our distributors more independent, and has helped our distributors close more sales over the past year.</p>
<p>Thanks Integration Agent for the excellent work!</p>
<p><strong><em>Michael Hamilton / Applications Engineer, Capstone Turbine Corporation</em></strong></p>
<hr />
<p>Denis of Integration Agent provided a cost-effective way for us to move data from a difficult-to-export system into HubSpot. We required a number of sample imports and testing of the data migration along the way. Denis was patient and thorough.</p>
<p><strong><em>Anne Lehan / Marketing Director at FDAImports.com, LLC</em></strong></p>
<hr />
<p>Working with Denis of Integration Agent was extremely refreshing. Excellent communicator and goes beyond an expectation we had. Extremely happy with our results and the new relationship.</p>
<p><strong><em>September Dohrmann / Marketing Director at FDAImports.com, LLC</em></strong></p>
<hr />
<p>Denis developed an elegant, clean and user-friendly solution in HubSpot for an event registration module that not only integrates with HubSpot forms, but also with PayPal for payment. He was a delight to work with, responding quickly to feedback and ready with clear instructions.</p>
<p>I highly recommend Denis with Integration Agent, and look forward to working with him again.</p>
<p><strong><em>Christine B. Whittemore / Chief Simplifier at Simple Marketing Now LLC</em></strong></p>
<hr />
<p>Denis helped us create a workflow between Salesforce and HubSpot that wasn&rsquo;t present in the standard integration that exists between the two platforms.</p>
<p>Without too much explanation he easily understood what we were trying to accomplish, and was able to execute the project on time.</p>
<p>I really liked that he seems to be up to speed on a lot of the newer functionality within Salesforce and was able to utilize some of these new tools (Process Builder) to reduce the number of hours needed. I would definitely recommend Denis with Integration Agent for any integration projects you might need some custom development on.</p>
<p><strong><em>Trent Boorman / Systems Analyst at SASB</em></strong></p>
<hr />
<p>We’ve been fortunate finding Denis with Integration Agent and having us do HubSpot integration for us.
His work has been key to getting a range of features and capabilities in place on our website.
In addition, his expert counsel and quick work has been a Godsend.</p>
<p><strong><em>Kevin Shayne / Director of Marketing at CADD Edge</em></strong></p>
<hr />
<p>Denis from Integration Agent was a great find! He had the skills to handle our Hubspot to Freshdesk integration out of the box so there was no cost for him to learn about either platform.
We met and discussed deliverables and they were done a week later. When minor changes were requested he handled it quickly.</p>
<p>He was available to bounce ideas off of regarding other integrations which we proceeded with and had the same speedy results.</p>
<p>My team is very happy with how much more connected our platforms feel and how it allows them to be more productive. I whole heartedly recommend Denis and Integration Agent.</p>
<p><strong><em>Laureen Jandroep / CEO of Certification Coaching</em></strong></p>
<hr />
<p>We hired Denis to support us to integrate Xero to our new CRM System. Denis did a fantastic job. We agreed on a time frame for the work to be completed. Denis completed before the deadline. He was very helpful through out the process.</p>
<p>I would highly recommend Denis with Integration Agent he is professional and reliable.</p>
<p><strong><em>Lucy Doig / CEO at Sign Loop Interpreting Services</em></strong></p>
<hr />
<p>The work Integration Agent has done goes beyond what I hoped would be possible to accomplish! I&rsquo;d recommend the company without hesitation.</p>
<p><strong><em>Chad Lawie / CEO at Longer Days</em></strong></p>
</description>
</item>
<item>
<title>How to integrate HubSpot form and PayPal</title>
<link>https://integrationagent.com/hubspot-paypal</link>
<pubDate>Tue, 31 Jan 2017 10:54:05 -0600</pubDate>
<guid>https://integrationagent.com/hubspot-paypal</guid>
<description><p>When you need to collect payments from your website PayPal button might be the best solution.</p>
<p>However, if you need to collect some information to send to HubSpot form first before the payment – that&rsquo;s not that easy.</p>
<p>The following code allows you to redirect your customers to PayPal account after after filling out the form.</p>
<p><img src="https://integrationagent.com/img/hubspotForm.png" /></p>
<p>After the form being submitted, it automatically redirects to your business PayPal page with predefined amount and product name.</p>
<p><img src="https://integrationagent.com/img/paypalcheckout.png" /></p>
<p>Here is the complete source code:</p>
<pre><code>&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;!--[if lte IE 8]&gt;
&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;//js.hsforms.net/forms/v2-legacy.js&quot;&gt;&lt;/script&gt;
&lt;![endif]--&gt;
&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;//js.hsforms.net/forms/v2.js&quot;&gt;&lt;/script&gt;
&lt;form action=&quot;https://www.paypal.com/cgi-bin/webscr&quot; method=&quot;post&quot; id=&quot;paypalform&quot;&gt;
&lt;input type=&quot;hidden&quot; name=&quot;item_name&quot; value=&quot;&quot;/&gt;
&lt;input type=&quot;hidden&quot; name=&quot;amount&quot; value=&quot;&quot;/&gt;
&lt;input type=&quot;hidden&quot; name=&quot;quantity&quot; value=&quot;1&quot;&gt;
&lt;input type=&quot;hidden&quot; name=&quot;cmd&quot; value=&quot;_xclick&quot;/&gt;
&lt;input type=&quot;hidden&quot; name=&quot;custom&quot; value=&quot;true&quot;/&gt;
&lt;input type=&quot;hidden&quot; name=&quot;business&quot; value=&quot;&quot;/&gt;
&lt;/form&gt;
&lt;div id=&quot;hs-form-container&quot;&gt;&lt;/div&gt;
&lt;script&gt;
var HubSpotPayPal = {
init: function (params) {
HubSpotPayPal.initPayPalForm(params.paypalEmail, params.amount, params.productName);
hbspt.forms.create({
portalId: params.hubSpotPortalId,
formId: params.hubSpotFormId,
target: &quot;#hs-form-container&quot;,
onFormSubmit: function ($form) {
setTimeout(function () {
$(&quot;#paypalform&quot;).submit();
}, 10);
return false;
}
});
},
initPayPalForm: function(paypalEmail, amount, productName){
$(&quot;#paypalform [name='business']&quot;).val(paypalEmail);
$(&quot;#paypalform [name='amount']&quot;).val(amount);
$(&quot;#paypalform [name='item_name']&quot;).val(productName);
}
}
HubSpotPayPal.init({
paypalEmail: &quot;den.lunev@gmail.com&quot;,
amount: &quot;170&quot;,
productName: &quot;My New Product&quot;,
hubSpotPortalId: &quot;2767376&quot;,
hubSpotFormId: &quot;14109ada-6a61-4d63-a1db-430b6ce0926d&quot;
});
&lt;/script&gt;
</code></pre>
<p>You just need to update the last part:</p>
<pre><code>HubSpotPayPal.init({
paypalEmail: &quot;[Your PayPal business account]&quot;,
amount: &quot;[Amount]&quot;,
productName: &quot;[Name of your product or service]&quot;,
hubSpotPortalId: &quot;[Your HubSpot portal Id]&quot;,
hubSpotFormId: &quot;[Your HubSpot form Id]&quot;
});
</code></pre>
<p>Looking for complete payment solution for HubSpot?
Check <a href="http://www.depositfix.com/">DepositFix</a>.</p>
</description>
</item>
<item>
<title>Freshdesk</title>
<link>https://integrationagent.com/freshdesk</link>
<pubDate>Thu, 12 Jan 2017 15:35:36 -0500</pubDate>
<guid>https://integrationagent.com/freshdesk</guid>
<description><script>
document.location = "/";
</script>
</description>
</item>
<item>
<title>Email Checker</title>
<link>https://integrationagent.com/emailchecker</link>
<pubDate>Mon, 12 Dec 2016 15:35:36 -0500</pubDate>
<guid>https://integrationagent.com/emailchecker</guid>
<description><script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<style>
.checker_container input, button {
padding: 7px;
border-radius: 3px;
font-size: 20px;
border: 1px #aaa solid;
margin-top: 15px;
}
.checker_container button {
background-color: #336699;
color: #fff;
cursor: pointer;
border: 0px;
}
#upload-file-form {
background-color: #fafafa;
border: 1px solid #ddd;
border-radius: 3px;
padding: 20px;
max-width: 700px;
width: 80%;
}
.inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.inputfile + label {
color: #336699;
display: inline-block;
}
.inputfile + label {
cursor: pointer; /* "hand" cursor */
}
.description{
padding-bottom: 20px;
font-size: 16px;
color: #777;
}
.email{
width: 95%;
}
.cover-container{
max-width: 700px;
width: 80%;
text-align: center;
}
.cover{
width: 300px;
border-radius: 3px;
border: 1px solid #ccc;
}
</style>
<div class="checker_container">
<form id="upload-file-form" method="POST" enctype="multipart/form-data" action="/uploadFile">
<div class="description">
Sending emails to non-existent addresses causes big bounce rate, as a result your emails will go to spam more often. <br/><br/>
Upload a contact list in csv with a column <b>email</b>, the email checker will verify all emails that exist and send you back a file with only valid records.
</div>
<div class="roww">
<input id="upload-file-input" class="inputfile" type="file" name="uploadfile" required="required"
accept="text/csv"/>
<label for="upload-file-input"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" viewBox="0 0 20 17"><path d="M10 0l-5.2 4.9h3.3v5.1h3.8v-5.1h3.3l-5.2-4.9zm9.3 11.5l-3.2-2.1h-2l3.4 2.6h-3.5c-.1 0-.2.1-.2.1l-.8 2.3h-6l-.8-2.2c-.1-.1-.1-.2-.2-.2h-3.6l3.4-2.6h-2l-3.2 2.1c-.4.3-.7 1-.6 1.5l.6 3.1c.1.5.7.9 1.2.9h16.3c.6 0 1.1-.4 1.3-.9l.6-3.1c.1-.5-.2-1.2-.7-1.5z"></path></svg> <span>Choose a file…</span></label>
</div>
<div class="roww">
<input id="email" class="email" type="email" name="email" required="required" placeholder="Email to send filtered file"/>
</div>
<span id="upload-file-message"></span>
<button type="submit" id="upload-file-btn">Upload</button>
</form>
<div id="message"></div>
</div>
<div class="cover-container">
<a href="https://www.youtube.com/watch?v=PO0Euev8D-0" target="_blank"><h3>Screencast Demo: How It Works</h3></a>
<!--<a href="https://www.youtube.com/watch?v=PO0Euev8D-0"><img class="cover" src="https://integrationagent.com/img/emailchecker/email_checker_screen.png" /></a>-->
</div>
<script>
// bind the on-change event for the input element (triggered when a file
// is chosen)
$(document).ready(function () {
$("#upload-file-form").on("submit", uploadFile);
});
/**
* Upload the file sending it via Ajax at the Spring Boot server.
*/
function uploadFile() {
var formData = new FormData($("#upload-file-form")[0]);
//formData.append("email", $("#email").val());
$.ajax({
url: "https://emailchecker.intagent.io/uploadFile",
type: "POST",
data: formData,
enctype: 'multipart/form-data',
processData: false,
contentType: false,
cache: false,
success: function () {
},
error: function () {
}
});
_agile.set_email($("#email").val());
_agile.add_tag('emailchecker');
$("#upload-file-form").html("Your file is being processed, you'll be notified by email.");
return false;
} // function uploadFile
var inputs = document.querySelectorAll('.inputfile');
Array.prototype.forEach.call(inputs, function (input) {
var label = input.nextElementSibling,
labelVal = label.innerHTML;
input.addEventListener('change', function (e) {
var fileName = '';
if (this.files.length > 1) {
fileName = ( this.getAttribute('data-multiple-caption') || '' ).replace('{count}', this.files.length);
} else {
fileName = e.target.value.split('\\').pop();
}
if (fileName) {
label.innerHTML = fileName;
} else {
label.innerHTML = labelVal;
}
});
});
</script>
</description>
</item>
<item>
<title>Payment</title>
<link>https://integrationagent.com/depositfix</link>
<pubDate>Mon, 12 Dec 2016 15:35:36 -0500</pubDate>
<guid>https://integrationagent.com/depositfix</guid>
<description><style>
.post-heading{
text-align: center;
}
.field{
width: 100%;
}
.df-title{
padding-bottom: 15px;
}
</style>
<p><link rel="stylesheet" type="text/css" href="https://depositfix.s3.amazonaws.com/style.css"/>
<h3>Setup fee of $300 + $50/m</h3>
<div id="df-card-container"></div></p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script>
<script src="https://depositfix.s3.amazonaws.com/deposifixform.js"></script>
<script>
$(document).ready(function() {
DepositFixForm.init({
hubSpotFormId: '49bfce9c-1370-4a9c-b723-db237f44de8b',
userId: "173",
amount: "300",
productName: "Monthly DepositFix Subscription",
discount: false
});
});
</script>
</description>
</item>
<item>
<title>About Integration Agent</title>
<link>https://integrationagent.com/about</link>
<pubDate>Wed, 12 Oct 2016 15:35:36 -0500</pubDate>
<guid>https://integrationagent.com/about</guid>
<description><div class="about-title">
<figure class="testimonials--item_image">
<img src="https://integrationagent.com/img/testimonials/headshot.png" />
</figure>
</div>
<p>Integration Agent was founded by Denis Lunev in beautiful Chicago, IL.</p>
<p>Denis has been developing software for more than 9 years for a variety of companies, including fast growing startups as well as large enterprise corporations.</p>
<p>He started Integration Agent to help businesses to supercharge marketing and sales processes through the power of software.</p>
</description>
</item>
<item>
<title>Services</title>
<link>https://integrationagent.com/services</link>
<pubDate>Wed, 12 Oct 2016 15:35:36 -0500</pubDate>
<guid>https://integrationagent.com/services</guid>
<description><div>
<h3>Enterprise Web Applications</h3>
<div class="strong_points--item_content">
<div class="strong_points--item_image -circle">
<i class="bi_building-office-a"></i>
</div>
<p class="strong_points--item_text_services">
We have solid skills and deep expertise in building enterprise solutions of various complexity levels. Our experience in BPM, ERP, CRM and BiG Data allows us to provide our customers with the best-practice custom solutions.
</p>
</div>
</div>
<div>
<h3>SAAS</h3>
<div class="strong_points--item_content">
<div class="strong_points--item_image -circle">
<i class=" bi_interface-cloud-upload"></i>
</div>
<p class="strong_points--item_text_services">
We've created a SaaS platform that allows us to build SaaS very fast. Standard features include user and plan management, payment, analytics and support tools integrations.
</p>
</div>
</div>
<div>
<h3>System Integrations</h3>
<div class="strong_points--item_content">
<div class="strong_points--item_image -circle">
<i class="bi_setting-gear-a"></i>
</div>
<p class="strong_points--item_text_services">
Our team can help you connect multiple systems via API, migrate from one service to another or transform your data (deduplication, clean up, enrichment).
</p>
</div>
</div>
</description>
</item>
<item>
<title>How To Validate Your SaaS idea</title>
<link>https://integrationagent.com/validate-your-saas-idea/</link>
<pubDate>Tue, 20 Sep 2016 00:00:00 +0000</pubDate>
<guid>https://integrationagent.com/validate-your-saas-idea/</guid>
<description>
<div class="cta">
SaaS Marketing Essentials Masterclass Giveaway
<a href='http://www.idea2saas.com/giveaway?ref=intagent'>
<button class="button" href="https://integrationagent.com/">Enter To Win</button>
</a>
</div>
<p>Just imagine going through all the trouble of researching and coming up with a SaaS idea — because you think people would want it — only for it to flop. It’s quite disheartening to spend an inordinate amount of time conceptualizing, designing and creating a product idea only to find out that your efforts have been futile.</p>
<p>This blog will walk you through all the steps that you need to validate your next big SaaS idea. Hopefully, you can prevent all those unnecessary costs and despairs of flopping product ideas. Are you ready?</p>
<h2 id="saas-idea-validation-overview">SaaS Idea Validation Overview</h2>
<p>The process of validating your SaaS idea shouldn’t be complicated. There are five crucial stages in the product idea validation process. These are:</p>
<ul>
<li>Stage 1: Understanding the market</li>
<li>Stage 2: Understanding potential customers/clients</li>
<li>Stage 3: Designing communication strategy for potential customers</li>
<li>Stage 4: Test-closing the prospects</li>
<li>Stage 5: Minimum viable product validation</li>
</ul>
<p>Ideally, the core philosophy in validating a product idea is to develop something that people want to use. It’s pointless to spend an inordinate amount of time developing a product that will be rejected by people. Of course, any product idea validation process should start with market validation moving all the way to the minimum product validation.</p>
<h2 id="1-understanding-the-market">1. Understanding the market</h2>
<p>The main objective of this stage is to develop a product that satisfies a “hungry” market. When people are starved, that’s a problem that requires a solution. When people feel disconnected from one another, then that’s a problem that requires a solution. You should think critically about any market problem and attempt to solve it.
You’ll always find a ton of problems that users are facing. The more pressing the problem, the more likely users will be willing to spend money to solve that problem. Each type of industry — ranging from health to hospitality to education — has its own problems that require solutions. Your goal in this first stage is to find “hungry” people — which is your market.
You may ask yourself, “How can I understand the market?”
The answer is simple: By using a variety of tools such as keyword research, Amazon search engine and deep-dive survey, you can determine what problems the customers are facing.</p>
<h2 id="2-understanding-the-potential-customers">2. Understanding the potential customers</h2>
<p>After discovering what the market wants, go out and meet the potential customers to obtain feedback on your likely product. The main advantage of using this approach is that you’ll be getting feedback by seeing for yourself the kind of problems your customers are facing. It’s vital that you get a first-hand sense of the kind of operations that your potential customers are involved in.
It is difficult to conduct this on a large scale. However, the quality of replies and insights that you’ll get from the pool of potential consumers will be powerful enough to get you started. You can start by interviewing a smaller number (say ten) of people using face-to-face or phone interview techniques. The goal of interviewing your potential customers should be to understand their future needs with regard to software requirements.</p>
<h2 id="3-design-a-communication-strategy-with-potential-customers">3. Design a communication strategy with potential customers</h2>
<p>The next stage in the SaaS idea validation process is the developing a communication strategy with customers. You may miss out on many visual clues about their business requirements after interacting with them for the first time. Therefore, you should plan to have regular communications with them to iron out emerging issues that you want your product to solve. You can call them directly or use e-mail as a platform to interact with your customers.</p>
<h2 id="4-test-closing-the-prospects">4. Test-closing the prospects</h2>
<p>The mere fact that lots of people have told you that your SaaS idea is great isn’t enough for you to go all out and spend to actualize that product. Some of these people may be your friends who just want to encourage you. There’s a big difference when they say they will buy your product and the actual buying.
So, how do you separate facts from fiction?
Listen very carefully and watch out for any red flags to make sure you get a specific answer. That’s the only way you’ll tell that your SaaS idea will be adopted. This is what test-closing is all about.</p>
<h2 id="5-minimum-viable-product-validation-mvp">5. Minimum viable product validation (MVP)</h2>
<p>The main aim of MVP validation is to approve or disapprove your product idea. Many SaaS companies that fall in the B2B category allow free trials or demonstration of their products. You can apply these tactics and get testimonials in exchange. The testimonials can help you to improve on the product idea.</p>
<p>You don&rsquo;t have to hire a bunch of people just to build MVP, you can seek help from <a href="http://idea2saas.com">companies</a> that specialize in SaaS MVP development.</p>
<h2 id="final-thoughts">Final thoughts</h2>
<p>SaaS idea validation is critical to the successful actualization of your business ideas. When executed correctly, it can be your competitive advantage. On the contrary, if your product idea hasn’t undergone validation, then the creative skill that you have in you can be killed. How will you validate your next SaaS idea? Good luck.</p>
<p><div class="cta">
SaaS Marketing Essentials Masterclass Giveaway
<a href='http://www.idea2saas.com/giveaway?ref=intagent'>
<button class="button" href="https://integrationagent.com/">Enter To Win</button>
</a>
</div>
<br/>
<br/></p>
</description>
</item>
<item>
<title>How To Validate Your SaaS idea</title>
<link>https://integrationagent.com/</link>
<pubDate>Tue, 20 Sep 2016 00:00:00 +0000</pubDate>
<guid>https://integrationagent.com/</guid>
<description><div id="main">
<div class="layout">
<div class="layout--container">
<!-- Main Slider -->
<section class="main_slider">
<div class="main_slider--slides js-main_slider_ _owl-carousel">
<div class="slide_promo" style="background:url({{ .Site.BaseURL }}assets/images/design/comp.jpg); background-size: cover;">
<div class="container">
<div class="row">
<div class="col-md-12 col-xs-12">
<h2 class="slide_promo--title">
Custom Software Development for Smart Companies
</h2>
<p class="slide_promo--description">
Is software essential for your business? Your development partner is here.
</p>
<footer class="slide_promo--footer">
<button class="button -orange -large" type="button">
LET'S TALK ABOUT YOUR PROJECT
</button>
<!--<button class="button -secondary -large" type="button">-->
<!--GET IN TOUCH-->
<!--</button>-->
</footer>
</div>
<pre><code> &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- /Main Slider --&gt;
&lt;section class=&quot;section&quot;&gt;
&lt;div class=&quot;section--inner container&quot;&gt;
&lt;header class=&quot;section--header&quot;&gt;
&lt;h2 class=&quot;section--title&quot;&gt;Our Expertise&lt;/h2&gt;
&lt;/header&gt;
&lt;div class=&quot;features_sun&quot;&gt;
&lt;div class=&quot;row&quot;&gt;
&lt;div class=&quot;col-md-4 col-md-push-4 col-md-offset-0 col-xs-6 col-xs-offset-3&quot;&gt;
&lt;div class=&quot;features_sun--picture&quot;&gt;
&lt;img src=&quot;./assets/images/design/grouped/penta.png&quot; alt=&quot;&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-4 col-md-pull-4 col-sm-6 col-xs-12&quot;&gt;
&lt;div class=&quot;features_sun--content&quot;&gt;
&lt;ul class=&quot;features_sun--list&quot;&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Design and architecture
&lt;/li&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Experts in cloud native applications
&lt;/li&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Frequent release cycles &amp; scalable architecture
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-4 col-sm-6 col-xs-12&quot;&gt;
&lt;div class=&quot;features_sun--content -right&quot;&gt;
&lt;ul class=&quot;features_sun--list&quot;&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Microservices driven architecture
&lt;/li&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Analytics solutions
&lt;/li&gt;
&lt;li class=&quot;features_sun--list_item&quot;&gt;
&lt;i class=&quot;features_sun--list_item_bullet bi_interface-arrow-right&quot;&gt;&lt;/i&gt;Payment gateways integrations
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- Services --&gt;
&lt;section class=&quot;section -odd -dark&quot; style=&quot;background: url({{ .Site.BaseURL }}/assets/images/design/strong_points-dark_bg.jpg) #1e3753;&quot;&gt;
&lt;div class=&quot;section--inner container&quot;&gt;
&lt;header class=&quot;section--header&quot;&gt;
&lt;h2 class=&quot;section--title&quot;&gt;Services&lt;/h2&gt;
&lt;/header&gt;
&lt;div class=&quot;section--container&quot;&gt;
&lt;div class=&quot;strong_points -dark&quot;&gt;
&lt;div class=&quot;strong_points--list&quot;&gt;
&lt;div class=&quot;row&quot;&gt;
&lt;!-- item --&gt;
&lt;div class=&quot;col-md-4 col-sm-6 col-xs-12&quot;&gt;
&lt;div class=&quot;strong_points--item&quot;&gt;
&lt;h3 class=&quot;strong_points--item_title&quot;&gt;Enterprise Web Applications&lt;/h3&gt;
&lt;div class=&quot;strong_points--item_content&quot;&gt;
&lt;div class=&quot;strong_points--item_image -circle&quot;&gt;
&lt;i class=&quot;bi_building-office-a&quot;&gt;&lt;/i&gt;
&lt;/div&gt;
&lt;p class=&quot;strong_points--item_text&quot;&gt;
We have solid skills and deep expertise in building enterprise solutions of various complexity levels. Our experience in BPM, ERP, CRM and BiG Data allows us to provide our customers with the best-practice custom solutions.
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /item --&gt;
&lt;!-- item --&gt;
&lt;div class=&quot;col-md-4 col-sm-6 col-xs-12&quot;&gt;
&lt;div class=&quot;strong_points--item&quot;&gt;
&lt;h3 class=&quot;strong_points--item_title&quot;&gt;SAAS&lt;/h3&gt;
&lt;div class=&quot;strong_points--item_content&quot;&gt;
&lt;div class=&quot;strong_points--item_image -circle&quot;&gt;
&lt;i class=&quot; bi_interface-cloud-upload&quot;&gt;&lt;/i&gt;
&lt;/div&gt;
&lt;p class=&quot;strong_points--item_text&quot;&gt;
We've created a SaaS platform that allows us to build SaaS very fast. Standard features include user and plan management, payment, analytics and support tools integrations.
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /item --&gt;
&lt;!-- item --&gt;
&lt;div class=&quot;col-md-4 col-sm-6 col-xs-12&quot;&gt;
&lt;div class=&quot;strong_points--item&quot;&gt;
&lt;h3 class=&quot;strong_points--item_title&quot;&gt;System Integrations&lt;/h3&gt;
&lt;div class=&quot;strong_points--item_content&quot;&gt;
&lt;div class=&quot;strong_points--item_image -circle&quot;&gt;
&lt;i class=&quot;bi_setting-gear-a&quot;&gt;&lt;/i&gt;
&lt;/div&gt;
&lt;p class=&quot;strong_points--item_text&quot;&gt;
Our team can help you connect multiple systems via API, migrate from one service to another or transform your data (deduplication, clean up, enrichment).
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /item --&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;footer class=&quot;strong_points--footer&quot;&gt;
&lt;button class=&quot;button -turquoise -large&quot; type=&quot;button&quot;&gt;
FREE SEO ANALYSIS
&lt;/button&gt;
&lt;button class=&quot;button -primary -large&quot; type=&quot;button&quot;&gt;
GET IN TOUCH
&lt;/button&gt;
&lt;/footer&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- /Services --&gt;
&lt;!-- TESTIMONIALS --&gt;
&lt;section class=&quot;section -odd&quot;&gt;
&lt;div class=&quot;section--inner container&quot;&gt;
&lt;header class=&quot;section--header&quot;&gt;
&lt;h2 class=&quot;section--title&quot;&gt;TESTIMONIALS&lt;/h2&gt;
&lt;p class=&quot;section--description&quot;&gt;
Hear what our clients have to say &lt;br/&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;/header&gt;
&lt;div class=&quot;section--container&quot;&gt;
&lt;div class=&quot;testimonials&quot;&gt;
&lt;div class=&quot;testimonials--list&quot;&gt;
&lt;div class=&quot;testimonials--item&quot;&gt;
&lt;figure class=&quot;testimonials--item_image&quot;&gt;
&lt;img src=&quot;{{ .Site.BaseURL }}/img/testimonials/aitac.png&quot; alt=&quot;&quot; /&gt;
&lt;/figure&gt;
&lt;div class=&quot;testimonials--item_content&quot;&gt;
&lt;p class=&quot;testimonials--item_text&quot;&gt;
We worked with Denis from Integration Agent in order to improve our customer support portal hosted on Freshdesk.
Denis was quick to understand what we wanted to do and executed it in a timely manner.
&lt;br/&gt;&lt;br/&gt;
Denis reacted quickly and efficiently when we requested changes.
The communication with Denis was very easy, no need for pages long specification.
&lt;br/&gt;&lt;br/&gt;
Highly recommended!
&lt;/p&gt;
&lt;dl class=&quot;testimonials--item_author&quot;&gt;
&lt;dt&gt;Marc Journeux&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;http://aitac.nl/&quot;&gt;President, Aitac&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;testimonials--item&quot;&gt;
&lt;figure class=&quot;testimonials--item_image&quot;&gt;
&lt;img src=&quot;{{ .Site.BaseURL }}/img/testimonials/michael.png&quot; alt=&quot;&quot; /&gt;
&lt;/figure&gt;
&lt;div class=&quot;testimonials--item_content&quot;&gt;
&lt;p class=&quot;testimonials--item_text&quot;&gt;
Denis with Integration Agent developed a Salesforce.com Performance Calculator tool for our microturbine electric generator products.
&lt;br/&gt;&lt;br/&gt;
Denis was very professional and communicated clearly with us to finalize requirements and work through complex engineering calculations together.
&lt;br/&gt;&lt;br/&gt;
The Performance Calculator tool has made our distributors more independent, and has helped our distributors close more sales over the past year.
&lt;br/&gt;&lt;br/&gt;
Thanks Integration Agent for the excellent work!
&lt;/p&gt;
&lt;dl class=&quot;testimonials--item_author&quot;&gt;
&lt;dt&gt;Michael Hamilton&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;http://www.capstoneturbine.com/&quot;&gt;Applications Engineer, Capstone Turbine Corporation&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;testimonials--item&quot;&gt;
&lt;figure class=&quot;testimonials--item_image&quot;&gt;
&lt;img src=&quot;{{ .Site.BaseURL }}/img/testimonials/anne.png&quot; alt=&quot;&quot; /&gt;
&lt;/figure&gt;
&lt;div class=&quot;testimonials--item_content&quot;&gt;
&lt;p class=&quot;testimonials--item_text&quot;&gt;
Denis of Integration Agent provided a cost-effective way for us to move data from a difficult-to-export system into HubSpot. We required a number of sample imports and testing of the data migration along the way. Denis was patient and thorough.
&lt;/p&gt;
&lt;dl class=&quot;testimonials--item_author&quot;&gt;
&lt;dt&gt;Anne Lehan&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;http://www.fdaimports.com/&quot;&gt;Marketing Director at FDAImports.com, LLC&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;testimonials--item&quot;&gt;
&lt;figure class=&quot;testimonials--item_image&quot;&gt;
&lt;img src=&quot;{{ .Site.BaseURL }}/img/testimonials/September.png&quot; alt=&quot;&quot; /&gt;
&lt;/figure&gt;
&lt;div class=&quot;testimonials--item_content&quot;&gt;
&lt;p class=&quot;testimonials--item_text&quot;&gt;
Working with Denis of Integration Agent was extremely refreshing. Excellent communicator and goes beyond an expectation we had. Extremely happy with our results and the new relationship.
&lt;/p&gt;
&lt;dl class=&quot;testimonials--item_author&quot;&gt;
&lt;dt&gt;September Dohrmann&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;http://ceospaceinternational.com/&quot;&gt;Marketing Director at FDAImports.com, LLC&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;testimonials--item&quot;&gt;
&lt;figure class=&quot;testimonials--item_image&quot;&gt;
&lt;img src=&quot;{{ .Site.BaseURL }}/img/testimonials/CBWhittemore.png&quot; alt=&quot;&quot; /&gt;
&lt;/figure&gt;
&lt;div class=&quot;testimonials--item_content&quot;&gt;
&lt;p class=&quot;testimonials--item_text&quot;&gt;
Denis developed an elegant, clean and user-friendly solution in HubSpot for an event registration module that not only integrates with HubSpot forms, but also with PayPal for payment. He was a delight to work with, responding quickly to feedback and ready with clear instructions.
&lt;br/&gt;&lt;br/&gt;
I highly recommend Denis with Integration Agent, and look forward to working with him again.
&lt;/p&gt;
&lt;dl class=&quot;testimonials--item_author&quot;&gt;