> ## Documentation Index
> Fetch the complete documentation index at: https://whatsapp-docs.kap.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Receiveflowresponse

# Receiving Flow Response

Upon flow completion a response message will be sent to the WhatsApp chat. You will receive it in the same way as you receive all other messages from the user - via message webhook. `response_json` field will contain flow-specific data.

The structure of flow-specific data is controlled by Flow JSON or, in case you are using Endpoint for your flow, by final response payload from endpoint. See [Response Message Webhook](https://developers.facebook.com/docs/whatsapp/flows/reference/responsemsgwebhook) reference page for more details.

The Flow response does not include the Flow ID. You can include a custom field in your Flow payload or an identifier in the `flow_token` field to identify the corresponding Flow.

```json theme={null}
\{
  "messages": [{\
    "context": {\
      "from": "16315558151",\
      "id": "gBGGEiRVVgBPAgm7FUgc73noXjo"\
    },\
    "from": "&lt;USER_ACCOUNT_NUMBER&gt;",\
    "id": "&lt;MESSAGE_ID&gt;",\
    "type": "interactive",\
    "interactive": {\
      "type": "nfm_reply",\
      "nfm_reply": {\
        "name": "flow",\
        "body": "Sent",\
        "response_json": "{\"flow_token\": \"&lt;FLOW_TOKEN&gt;\", \"optional_param1\": \"<value1>\", \"optional_param2\": \"<value2>\"}"\
      }\
    },\
    "timestamp": "&lt;MESSAGE_SEND_TIMESTAMP&gt;"\
  }]
}
```

[←\\
\\
Previous\\
\\
Sending a Flow](https://developers.facebook.com/docs/whatsapp/flows/gettingstarted/sendingaflow)

[→\\
\\
Next\\
\\
Guides](https://developers.facebook.com/docs/whatsapp/flows/guides)

On This Page

[Receiving Flow Response](https://developers.facebook.com/docs/whatsapp/flows/guides/receiveflowresponse#receiving-flow-response)
