actions-on-google/assistant-conversation-nodejs

Exit/Close conversation from Webhook

cbothra opened this issue · 2 comments

Hi,

I am building an action and using webhook. There is a use case in the intent handler when after giving prompt to user I would like to close the conversation from webhook itself. I went through the @assistant/conversation api documentation but couldn't find any way to do that.

Any help?

Thanks-in-advance

You can use scene transitions to transition to the built-in scene actions.scene.END_CONVERSATION.

Hi @Fleker, Thanks and I confirm that this works as intended.