Skip to content

Instantly share code, notes, and snippets.

@samrose
Created September 23, 2013 13:59
Show Gist options
  • Save samrose/6670773 to your computer and use it in GitHub Desktop.
Save samrose/6670773 to your computer and use it in GitHub Desktop.
Custom Olark Command and Population of field
olark('api.chat.onCommandFromOperator', function(event) {
if (event.command.name == 'resolution') {
olark('api.visitor.updateCustomFields', {customerResolution: event.command.body});
}
});
@samrose
Copy link
Author

samrose commented Nov 20, 2013

workflow:

  1. !end the conversation
  2. !resolution
  3. !case sends it to the webhook
  4. DONE!

@samrose
Copy link
Author

samrose commented Nov 20, 2013

for lead simply type command:

!lead

webhook will do the rest (webhook will record "isLead: true" which can be caught by receiving script. !case does not record "isLead" or send that field on at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment