When we investigate your ticket, we often require information that only you can provide. This article is meant to provide you with tools and insights on what sort of information is helpful.
We appreciate you collecting the information as it helps us investigate the ticket as soon as it is created, and it shortens the ticket handling time overall. Providing many details while the ticket is opened will reduce our need to inquire for more information, thus allowing us to reach resolution quickly.
The Basics
- Description of the issue - how is the existing behavior different from the expected?
- Defined impact of the issue. For example:
- Number of agents impacted, out of the total(e.g. 2 out of 100)
- Percentage of conversations impacted
- The severity of the impact on your operation or business
- Steps to replicate the issue
- Is the issue intermittent or consistent (can you recreate it on demand?)
- The time the issue was first noticed
- Recent changes and the timeline. This can include:
- Modifications to your Conversational Cloud configuration
- Changes on your website or application
- Recent increase or decrease in your staffing
- A launch or decommission of products and campaigns
- Screenshots or a recording of the issue as it manifests
- The error message encountered
html:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
ul, #myUL {
list-style-type: circle;
}
#myUL {
margin: 0;
padding: 0;
}
.caret {
cursor: pointer;
-webkit-user-select: none; /* Safari 3.1+ */
-moz-user-select: none; /* Firefox 2+ */
-ms-user-select: none; /* IE 10+ */
user-select: none;
}
.caret::before {
content: "\25B6";
color: black;
display: inline-block;
margin-right: 6px;
}
.caret-down::before {
-ms-transform: rotate(90deg); /* IE 9 */
-webkit-transform: rotate(90deg); /* Safari */'
transform: rotate(90deg);
}
.nested {
display: none;
}
.active {
display: block;
}
</style>
</head>
<body>
<h2>Useful information according to the functionality area</h2>
<ul id="myUL">
<li><span class="caret">Conversational Cloud</span>
<ul class="nested">
<li>Describe your request clearly</li>
<li>Include all relevant information in as much detail as possible</li>
<li>Network traffic recording (HAR)</li>
<li>Screenshots of the issue and/or error</li>
</ul>
<ul id="myUL">
<li><span class="caret">Bot Tickets</span>
<ul class="nested">
<li>The type of bot (Conversation Builder/Watson/custom)</li>
<li>Username and ID (ID for Conversation Builder)</li>
<li>Logs and/or relevant code</li>
</ul>
<ul id="myUL">
<li><span class="caret">Mobile SDK</span>
<ul class="nested">
<li>LivePerson SDK version</li>
<li>Affected OS versions</li>
<li>Affected device models</li>
<li>Upload device logs/application logs</li>
<li>Upload screenshots / videos</li>
<li>Related code and/or APK/IPA</li>
<li>Network traffic recording</li>
</ul>
<ul id="myUL">
<li><span class="caret">APIs</span>
<ul class="nested">
<li>Request URL</li>
<li>Request headers</li>
<li>Request body</li>
<li>Response code and body</li>
<li>Network traffic recording</li>
</ul>
<ul id="myUL">
<li><span class="caret">Consumer side issue</span>
<ul class="nested">
<li>Access to the page/application</li>
<li>Test credentials (if needed)</li>
<li>Network traffic recording</li>
<li>Environment</li><ul>
<li>Device/OS type and version</li>
<li>Browser type and version</li></ul>
<li>Campaign information</li><ul>
<li>Campaign name and/or ID</li>
<li>Engaegment name and/or ID</li></ul>
</li>
</ul>
</li>
</ul>
<ul id="myUL">
<li><span class="caret">Agent side issue</span>
<ul class="nested">
<li>Agent name and ID</li>
<li>Issue description including the actions taken when the issue appeared</li>
<li>Network traffic recording</li>
<li>Environment details</li><ul>
<li>Device/OS type and version</li>
<li>Browser type and version</li>
<li>Custom variables like Citrix or other relevant environment setup options</li></ul>
</li>
</ul>
</li>
</ul>
<script>
var toggler = document.getElementsByClassName("caret");
var i;
for (i = 0; i < toggler.length; i++) {
toggler[i].addEventListener("click", function() {
this.parentElement.querySelector(".nested").classList.toggle("active");
this.classList.toggle("caret-down");
});
}
</script>
</body>
</html>
➡️ You are encouraged to submit any information you deem relevant in the ticket. Our support team will contact you with request to complete any information we deem crucial to the investigation. We thank you for your collaboration.