L&D Chat Embed Demo
Configuration Parameters
The L&D Chat widget can be configured using the following URL parameters:
| Parameter |
Description |
Required |
Example |
dialogId |
Unique identifier for a specific conversation or dialog flow |
Optional |
dialogId=123 |
jobId |
Identifier for a specific job or task context |
Optional |
jobId=456 |
customerRoutePath |
Custom routing path for specific customer implementations |
Optional |
customerRoutePath=mindintomatter |
Note: Parameters can be combined to create a fully customized chat experience. All parameters are optional but provide additional context and functionality when used.
Basic Embedding
This is the simplest way to embed the L&D Chat widget without any parameters:
<iframe
src="https://app.coachyourself.online/embed"
width="100%"
height="500px"
frameborder="0"
></iframe>
Embedding with Dialog and Job IDs
Example of embedding with specific dialog and job identifiers:
<iframe
src="https://app.coachyourself.online/embed?dialogId=123&jobId=456"
width="100%"
height="500px"
frameborder="0"
></iframe>
Full Configuration Example
Example using all available configuration parameters:
<iframe
src="https://app.coachyourself.online/embed?dialogId=123&jobId=456&customerRoutePath=mindintomatter"
width="100%"
height="500px"
frameborder="0"
></iframe>
Best Practices:
- Always use HTTPS for secure communication
- Consider the viewport size when setting iframe dimensions
- Test the integration with different parameter combinations