Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Dialog API not returning information about the Webhook Calls #148

@boudhayan-dev

Description

@boudhayan-dev

I am encountering a very weird problem with the Dialog endpoint of the API ( Dialog Endpoint ). Well, I have set an actions if a particular intent is triggered. The action does the following -

  1. Send a message - "Hello received intent"
  2. Call a Webhook URL - POST https://www.example.com
  3. Send a quick reply - "Successful in calling webhook"

Now, when I am trying to fetch the information about this conversation using the above mentioned endpoint, I am not getting the information about the Webhook call.

Ideally, the messages key in the returned response should contain all the configured responses for a particular Action, right ? . The returned response only contains information about the message and the quick reply . The info about the Webhook call is missing. Sample response below -

"messages": [
     {
       "type": "text",
       "content": "Hello received intent",
       "markdown": null,
       "delay": null
     },
     {
       "type": "quickReplies",
       "content": {
         "title": "Successful in calling webhook",
         "buttons": []
       },
       "markdown": null,
       "delay": null
     }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions