Home / Widgets / Docsbot with custom data
Duplicate Snippet

Embed Snippet on Your Site

Docsbot with custom data

Init docsbot with custom support action and identify for user data.

<10
Code Preview
js
DocsBotAI.init( {
	id: '',
	supportCallback: function ( event, history ) {
		event.preventDefault();
		hideDocsBot();
	},
	identify: {
		name: yourtheme.user.name,
		email: yourtheme.user.email,
		userid: yourtheme.user.id
	}
} );

Comments

Add a Comment