Whatsapp Flow Run 问题(Flow 发送失败)

问题描述 投票:0回答:1

尝试发送流量时,我收到此消息:

在此输入图片描述

{
    "version": "5.1",
    "screens": [
        {
            "id": "DETAILS",
            "title": "Get help",
            "data": {},
            "terminal": true,
            "success": true,
            "layout": {
                "type": "SingleColumnLayout",
                "children": [
                    {
                        "type": "Form",
                        "name": "form",
                        "children": [
                            {
                                "type": "TextInput",
                                "name": "name",
                                "label": "Name",
                                "input-type": "text",
                                "required": true
                            },
                            {
                                "type": "TextInput",
                                "label": "Order number",
                                "name": "orderNumber",
                                "input-type": "number",
                                "required": true
                            },
                            {
                                "type": "RadioButtonsGroup",
                                "label": "Choose a topic",
                                "name": "topicRadio",
                                "data-source": [
                                    {
                                        "id": "0",
                                        "title": "Orders and payments"
                                    },
                                    {
                                        "id": "1",
                                        "title": "Maintenance"
                                    },
                                    {
                                        "id": "2",
                                        "title": "Delivery"
                                    },
                                    {
                                        "id": "3",
                                        "title": "Returns"
                                    },
                                    {
                                        "id": "4",
                                        "title": "Other"
                                    }
                                ],
                                "required": true
                            },
                            {
                                "type": "TextArea",
                                "label": "Description of issue",
                                "required": false,
                                "name": "description"
                            },
                            {
                                "type": "Footer",
                                "label": "Done",
                                "on-click-action": {
                                    "name": "complete",
                                    "payload": {
                                        "name": "${form.name}",
                                        "orderNumber": "${form.orderNumber}",
                                        "topicRadio": "${form.topicRadio}",
                                        "description": "${form.description}"
                                    }
                                }
                            }
                        ]
                    }
                ]
            }
        }
    ]
}
whatsapp meta whatsapp-cloud-api whatsapp-flows
1个回答
0
投票

为了能够发送 WA Flows,您需要验证您的业务并保持较高的消息质量。

请参阅详情

© www.soinside.com 2019 - 2024. All rights reserved.