跳转至

回复消息

您可以通过这个接口回复客户消息

HTTP 请求

POST /v1/whatsapp/message/send/GENERAL_TEXT_REPLY

Request Headers
{
    "Content-Type": "application/json",
    "Authorization": "Bearer {{access_token}}",
    "x-api-key": "{{api_key}}"
}
Request Body
{
    "phone": "11987654321", 
    "countryCallingCode": "+1", 
    "text": "Your Reply"
}
Content-Type: application/json
{
    "resultCode": 200,
    "msgId": "gBGGFRBQmGUvAglCIxywFV5mRRY"
}

Request Headers 字段说明

参数
Authorization "bearer" + " " + {{access_token}}
x-api-key {{api_key}}

Request Body 字段说明

参数 必填 类型 描述
phone String 电话号码,包含国家电话代码
countryCallingCode String 国家电话代码. 如美国"+1"
text String 您回复WhatsApp客户的文字消息
回到页面顶部