Integration Experience Survey

The Integration Experience Survey captures detailed feedback about how customers experience integrating your product with their existing systems. It covers the entire integration journey from initial documentation review through implementation, testing, and go-live. Capture feedback on documentation quality, code samples, technical support, and overall ease of integration. Essential for SaaS companies, API providers, and any product requiring technical implementation by customers.

Product Feedback

Try the Form

Help us improve the integration experience for future customers.
Integration Details
Overall Integration Experience
8hrs
8 hrs
1100
 
Documentation Quality
Poor Fair Good Very Good Excellent
Clarity & Readability*
Easy to understand
Completeness*
Covered all needed topics
Accuracy*
Correct and up-to-date
Code Examples*
Useful and working examples
Navigation
Easy to find information
Search Functionality
Finding specific topics
Technical Implementation
0/5
Very Difficult
Very Easy
 
Support & Assistance
Integration Outcome
 
Not at all likely
Extremely likely
 
Suggestions for Improvement
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
export function integrationFeedbackForm(form: FormTs) {
// Integration Experience Survey - Technical implementation feedback
// Demonstrates: StarRating, EmojiRating, MatrixQuestion, RatingScale, Slider, ThumbRating, CheckboxList, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Integration Feedback',
computedValue: () => 'Help us improve the integration experience for future customers.',
customStyles: {
backgroundColor: '#4f46e5',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Integration Details
// ============================================
const detailsSection = form.addSubform('details', {
title: 'Integration Details'
});
 
detailsSection.addRow(row => {
row.addDropdown('integrationType', {
label: 'Integration Type',
options: [
{ id: 'rest-api', name: 'REST API' },
{ id: 'graphql', name: 'GraphQL API' },
{ id: 'webhooks', name: 'Webhooks' },
{ id: 'sdk', name: 'SDK/Library' },
{ id: 'native', name: 'Native Integration' },
{ id: 'zapier', name: 'Zapier/Automation' },
{ id: 'custom', name: 'Custom Integration' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select integration type...',
isRequired: true
}, '1fr');
row.addDropdown('complexity', {
label: 'Integration Complexity',
options: [
{ id: 'simple', name: 'Simple (hours)' },
{ id: 'moderate', name: 'Moderate (days)' },
{ id: 'complex', name: 'Complex (weeks)' },
{ id: 'enterprise', name: 'Enterprise (months)' }
],
placeholder: 'Select complexity...'
}, '1fr');
});
 
detailsSection.addRow(row => {
row.addDropdown('techStack', {
label: 'Your Primary Tech Stack',
options: [
{ id: 'js-node', name: 'JavaScript/Node.js' },
{ id: 'python', name: 'Python' },
{ id: 'java', name: 'Java' },
{ id: 'csharp', name: 'C#/.NET' },
{ id: 'php', name: 'PHP' },
{ id: 'ruby', name: 'Ruby' },
{ id: 'go', name: 'Go' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select tech stack...'
}, '1fr');
row.addDropdown('implementerRole', {
label: 'Your Role',
options: [
{ id: 'backend', name: 'Backend Developer' },
{ id: 'fullstack', name: 'Full-Stack Developer' },
{ id: 'frontend', name: 'Frontend Developer' },
{ id: 'devops', name: 'DevOps/SRE' },
{ id: 'architect', name: 'Solution Architect' },
{ id: 'sysadmin', name: 'System Administrator' },
{ id: 'manager', name: 'Technical Manager' }
],
placeholder: 'Select your role...'
}, '1fr');
});
 
// ============================================
// SECTION 2: Overall Experience
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Integration Experience'
});
 
overallSection.addRow(row => {
row.addEmojiRating('overallExperience', {
label: 'How was your overall integration experience?',
preset: 'effort',
size: 'lg',
alignment: 'center',
showLabels: true
});
});
 
overallSection.addRow(row => {
row.addSlider('timeToIntegrate', {
label: 'How long did the integration take? (hours)',
min: 1,
max: 100,
step: 1,
showValue: true,
unit: 'hrs',
defaultValue: 8
});
});
 
overallSection.addRow(row => {
row.addRadioButton('timeVsExpected', {
label: 'Compared to your expectation, the integration took:',
options: [
{ id: 'much-less', name: 'Much less time' },
{ id: 'less', name: 'Less time' },
{ id: 'as-expected', name: 'About as expected' },
{ id: 'more', name: 'More time' },
{ id: 'much-more', name: 'Much more time' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 3: Documentation Quality
// ============================================
const docsSection = form.addSubform('docs', {
title: 'Documentation Quality'
});
 
docsSection.addRow(row => {
row.addMatrixQuestion('docsRating', {
label: 'Rate the documentation:',
rows: [
{ id: 'clarity', label: 'Clarity & Readability', description: 'Easy to understand', isRequired: true },
{ id: 'completeness', label: 'Completeness', description: 'Covered all needed topics', isRequired: true },
{ id: 'accuracy', label: 'Accuracy', description: 'Correct and up-to-date', isRequired: true },
{ id: 'examples', label: 'Code Examples', description: 'Useful and working examples', isRequired: true },
{ id: 'navigation', label: 'Navigation', description: 'Easy to find information', isRequired: false },
{ id: 'search', label: 'Search Functionality', description: 'Finding specific topics', isRequired: false }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
fullWidth: true,
striped: true
});
});
 
docsSection.addRow(row => {
row.addThumbRating('docsHelpful', {
label: 'Was the documentation helpful enough to complete the integration?',
showLabels: true,
upLabel: 'Yes, sufficient',
downLabel: 'No, needed more',
alignment: 'center'
});
});
 
docsSection.addRow(row => {
row.addTextarea('docsMissing', {
label: 'What was missing or unclear in the documentation?',
placeholder: 'Describe any gaps, unclear sections, or missing examples...',
rows: 3,
autoExpand: true,
isVisible: () => docsSection.thumbRating('docsHelpful')?.value() === 'down'
});
});
 
// ============================================
// SECTION 4: Technical Implementation
// ============================================
const techSection = form.addSubform('technical', {
title: 'Technical Implementation'
});
 
techSection.addRow(row => {
row.addStarRating('apiDesign', {
label: 'Rate the API/Integration design',
maxStars: 5,
size: 'lg',
alignment: 'center',
showCounter: true
});
});
 
techSection.addRow(row => {
row.addRatingScale('easeOfSetup', {
label: 'How easy was the initial setup?',
preset: 'likert-5',
lowLabel: 'Very Difficult',
highLabel: 'Very Easy',
alignment: 'center'
});
});
 
techSection.addRow(row => {
row.addCheckboxList('technicalChallenges', {
label: 'What challenges did you encounter? (Select all that apply)',
options: [
{ id: 'auth', name: 'Authentication/Authorization' },
{ id: 'rate-limits', name: 'Rate limiting issues' },
{ id: 'error-handling', name: 'Error handling/messages' },
{ id: 'data-format', name: 'Data format/schema issues' },
{ id: 'versioning', name: 'API versioning' },
{ id: 'testing', name: 'Testing/sandbox environment' },
{ id: 'performance', name: 'Performance/latency' },
{ id: 'webhooks', name: 'Webhook reliability' },
{ id: 'none', name: 'No significant challenges' }
],
orientation: 'vertical'
});
});
 
techSection.addSpacer({ height: '15px' });
 
techSection.addRow(row => {
row.addTextarea('challengeDetails', {
label: 'Describe the most significant technical challenge',
placeholder: 'What was the issue? How did you resolve it?',
rows: 3,
autoExpand: true,
isVisible: () => {
const challenges = techSection.checkboxList('technicalChallenges')?.value() || [];
return challenges.length > 0 && !challenges.includes('none');
}
});
});
 
// ============================================
// SECTION 5: Support Experience
// ============================================
const supportSection = form.addSubform('support', {
title: 'Support & Assistance'
});
 
supportSection.addRow(row => {
row.addThumbRating('neededSupport', {
label: 'Did you need to contact support during integration?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
supportSection.addRow(row => {
row.addStarRating('supportQuality', {
label: 'How would you rate the support you received?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showCounter: true,
isVisible: () => supportSection.thumbRating('neededSupport')?.value() === 'up'
});
});
 
supportSection.addRow(row => {
row.addRadioButton('supportChannel', {
label: 'Which support channel did you use?',
options: [
{ id: 'docs', name: 'Documentation/self-service' },
{ id: 'email', name: 'Email support' },
{ id: 'chat', name: 'Live chat' },
{ id: 'community', name: 'Community/forums' },
{ id: 'slack', name: 'Slack/Discord' },
{ id: 'phone', name: 'Phone support' },
{ id: 'dedicated', name: 'Dedicated success manager' }
],
orientation: 'vertical',
isVisible: () => supportSection.thumbRating('neededSupport')?.value() === 'up'
});
});
 
// ============================================
// SECTION 6: Outcome & Satisfaction
// ============================================
const outcomeSection = form.addSubform('outcome', {
title: 'Integration Outcome'
});
 
outcomeSection.addRow(row => {
row.addRadioButton('integrationStatus', {
label: 'Current integration status',
options: [
{ id: 'production', name: 'Live in production' },
{ id: 'staging', name: 'In staging/testing' },
{ id: 'development', name: 'Still in development' },
{ id: 'paused', name: 'Paused/blocked' },
{ id: 'abandoned', name: 'Abandoned' }
],
orientation: 'vertical'
});
});
 
outcomeSection.addRow(row => {
row.addTextarea('blockerDetails', {
label: 'What is blocking your integration?',
placeholder: 'Describe the blocker and what would help you move forward...',
rows: 3,
autoExpand: true,
isVisible: () => {
const status = outcomeSection.radioButton('integrationStatus')?.value();
return status === 'paused' || status === 'abandoned';
}
});
});
 
outcomeSection.addRow(row => {
row.addRatingScale('nps', {
preset: 'nps',
label: 'How likely are you to recommend our integration to other developers?',
showCategoryLabel: true,
showSegmentColors: true,
isRequired: true
});
});
 
outcomeSection.addRow(row => {
row.addThumbRating('wouldIntegrateAgain', {
label: 'Would you build another integration with us?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Improvements
// ============================================
const improvementsSection = form.addSubform('improvements', {
title: 'Suggestions for Improvement'
});
 
improvementsSection.addSpacer({ height: '10px' });
 
improvementsSection.addRow(row => {
row.addTextarea('topImprovement', {
label: 'What one thing would most improve the integration experience?',
placeholder: 'Share your top suggestion...',
rows: 3,
autoExpand: true
});
});
 
improvementsSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any additional feedback for our engineering team?',
placeholder: 'Technical suggestions, feature requests, or other thoughts...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Integration Feedback Summary',
isVisible: () => outcomeSection.ratingScale('nps')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const integrationType = detailsSection.dropdown('integrationType')?.value();
const complexity = detailsSection.dropdown('complexity')?.value();
const overallExp = overallSection.emojiRating('overallExperience')?.value();
const timeSpent = overallSection.slider('timeToIntegrate')?.value();
const apiRating = techSection.starRating('apiDesign')?.value();
const npsScore = outcomeSection.ratingScale('nps')?.value();
const npsCategory = outcomeSection.ratingScale('nps')?.npsCategory();
const status = outcomeSection.radioButton('integrationStatus')?.value();
const challenges = techSection.checkboxList('technicalChallenges')?.value() || [];
 
const typeLabels: Record<string, string> = {
'rest-api': 'REST API',
'graphql': 'GraphQL API',
'webhooks': 'Webhooks',
'sdk': 'SDK/Library',
'native': 'Native Integration',
'zapier': 'Zapier/Automation',
'custom': 'Custom',
'other': 'Other'
};
 
const expLabels: Record<string, string> = {
'very-hard': 'Very Difficult',
'hard': 'Difficult',
'neutral': 'Moderate',
'easy': 'Easy',
'very-easy': 'Very Easy'
};
 
const statusLabels: Record<string, string> = {
'production': 'Live',
'staging': 'Testing',
'development': 'In Dev',
'paused': 'Paused',
'abandoned': 'Abandoned'
};
 
let statusIcon = '🟡';
if (npsCategory === 'promoter') statusIcon = '🟢';
if (npsCategory === 'detractor') statusIcon = '🔴';
 
let summary = `${statusIcon} Integration Feedback Summary\n`;
summary += `${'═'.repeat(32)}\n\n`;
 
if (integrationType) {
summary += `🔌 Type: ${typeLabels[integrationType] || integrationType}\n`;
}
 
if (complexity) {
summary += `📊 Complexity: ${complexity.charAt(0).toUpperCase() + complexity.slice(1)}\n`;
}
 
if (overallExp) {
summary += `🎯 Experience: ${expLabels[overallExp] || overallExp}\n`;
}
 
if (timeSpent) {
summary += `⏱️ Time: ${timeSpent} hours\n`;
}
 
if (apiRating) {
summary += `⭐ API Design: ${apiRating}/5\n`;
}
 
if (npsScore !== null && npsScore !== undefined) {
summary += `\n📈 Developer NPS: ${npsScore}/10 (${npsCategory?.charAt(0).toUpperCase()}${npsCategory?.slice(1)})\n`;
}
 
if (status) {
summary += `📦 Status: ${statusLabels[status] || status}\n`;
}
 
if (challenges.length > 0 && !challenges.includes('none')) {
summary += `\n⚠️ Challenges: ${challenges.length} reported`;
}
 
return summary;
},
customStyles: () => {
const npsCategory = outcomeSection.ratingScale('nps')?.npsCategory();
const baseStyles = {
padding: '20px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (npsCategory === 'promoter') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (npsCategory === 'passive') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (npsCategory === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#f1f5f9', borderLeft: '4px solid #94a3b8' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Integration Feedback',
isVisible: () => outcomeSection.ratingScale('nps')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Developer Feedback!',
message: 'Your technical insights help us build a better integration experience. Our engineering team reviews all feedback to improve documentation, APIs, and developer tools.'
});
}
 

Frequently Asked Questions

When should I send this survey?

Send shortly after the integration goes live (1-2 weeks) while the experience is fresh. For complex integrations, consider milestone check-ins during implementation.

Who should receive this survey?

Send to the technical implementers - developers, system administrators, or IT teams who actually built the integration. Decision-makers may not have the detailed technical perspective.

How can I improve based on documentation feedback?

Track which sections get low ratings. Common issues include outdated examples, missing edge cases, and unclear error handling. Prioritize updates to frequently-used integration paths.

What if customers report integration issues?

Create a direct escalation path for reported issues. Technical problems flagged in surveys indicate gaps in documentation, APIs, or support that affect multiple customers.

Should I ask about specific integrations?

Yes, if you offer multiple integration options (REST API, webhooks, native integrations). Feedback varies significantly by integration type and helps prioritize development resources.