Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
How do I associate a survey to Inlay chat?
Environment:
ChatOracle B2C Service
Resolution:
When concluding a chat session, the Embedded Chat Inlay uses the postChatClosingMessage to display information to the end user. By default, the string says “Thank you for chatting with us. You may close this window”. This answer will show how to integrate a Oracle B2C Service survey into this message. As this integration requires overwriting the default string, a configuration file with the string override will be necessary.
At this point the URL will have this format:
https://interface_name.custhelp.com/ci/documents/detail/5/survey_id/12/autorization_code
This is the generic URL for this survey and is broken down as follows:
In order to associate the survey and the chat, a table and a primary id need to be associated to the survey.
/6/223 – the 6 represents a table association, 223 represents the chat table.
/7/{ENGAGEMENT_ID} – the 7 represents a primary id association, while {ENGAGEMENT_ID} is the chat ID variable necessary to associate the survey and the chat engagement. This variable will be populated automatically by the chat inlay.
When completed the finished URL should look like this:
https://interface_name.custhelp.com/ci/documents/detail/5/survey_id/6/223/7/{ENGAGEMENT_ID}/12/autorization_code.
"postChatClosingMessage":"Thank you for chatting with us. Please complete our survey [Click Here](http://acme.custhelp.com/ci/documents/detail/5/11/6/223/7/{ENGAGEMENT_ID}/12/245cfe1718889dd43ee26d6654e354af8331c668)"
When clicked and completed, the survey will be associated with the unique chat engagement that just concluded.
Example of a Config file to launch a post-chat survey:
{
"inlays":{
"types":{
"inlay-oracle-chat-embedded":{
"strings":{
"title":"Example test",
}
Surveys from an external source may be added in a similar manner by including the survey link in the "postChatClosingMessage".
For additional information, refer to the Inlays and Customer Portal and Answers About Chat Inlays section in the Online Help User Guide documentation. To access Oracle B2C Service manuals and documentation online, refer to the Documentation for Oracle B2C Service Products.
Please note that if you add the json file to be used in the data-oit-config-url parameter in the euf/assets directory, it will only work if you are using the Inlay widget on the Customer Portal pages, due to Cross Origin Resource Sharing (CORS) considerations. If you are hosting the Chat Inlay on an external website, you can either:
a) host the JSON externally with CORS headers, or
b) serve the JSON through a custom controller under /ci/custom/..., where you can control the headers