연락처 및 위치 메시지 전송

/messages 노드를 사용하여 다른 메시지 유형(예: 연락처 또는 위치 메시지)을 고객에게 전송합니다.

시작하기 전에

다음과 같은 항목이 필요합니다.

이 메시지는 고객 관리 창 내에서 고객에게 받은 메시지에 대한 답장으로만 보낼 수 있습니다. 현재 메시지 템플릿에서 보내는 기능은 지원하지 않습니다.

연락처 메시지

1단계: /messagesPOST 요청 보내기

POST /v1/messages
{
    "to": "recipient-wa-id",
    "type": "contacts",
    "contacts": [
                {
                    "addresses": [
                        {
                            "city": "Menlo Park",
                            "country": "United States",
                            "country_code": "us",
                            "state": "CA",
                            "street": "1 Hacker Way",
                            "type": "HOME",
                            "zip": "94025"
                        },
                        {
                            "city": "Menlo Park",
                            "country": "United States",
                            "country_code": "us",
                            "state": "CA",
                            "street": "200 Jefferson Dr",
                            "type": "WORK",
                            "zip": "94025"
                        }
                    ],
                    "birthday": "2012-08-18",
                    "emails": [
                        {
                            "email": "test@fb.com",
                            "type": "WORK"
                        },
                        {
                            "email": "test@whatsapp.com",
                            "type": "WORK"
                        }
                    ],
                    "name": {
                        "first_name": "John",
                        "formatted_name": "John Smith",
                        "last_name": "Smith"
                    },
                    "org": {
                        "company": "WhatsApp",
                        "department": "Design",
                        "title": "Manager"
                    },
                    "phones": [
                        {
                            "phone": "+1 (940) 555-1234",
                            "type": "HOME"
                        },
                        {
                            "phone": "+1 (650) 555-1234",
                            "type": "WORK",
                            "wa_id": "16505551234"
                        }
                    ],
                    "urls": [
                        {
                             "url": "https://www.facebook.com",
                             "type": "WORK"
                        }
                    ]
                }
            ]
}

매개변수에 대한 자세한 내용은 다음을 참조하세요.

2단계: 응답 확인

성공적인 응답은 다음과 같습니다.

{
    "messages": [{
       "id": "message-id"
    }]
}

위치 메시지

1단계: /messagesPOST 요청 보내기

POST /v1/messages

{
    "to": "recipient-wa-id",
    "type": "location",
    "location": {
        "longitude": -122.425332,
        "latitude": 37.758056,
        "name": "Facebook HQ",
        "address": "1 Hacker Way, Menlo Park, CA 94025"
    }
}

매개변수에 대한 자세한 내용은 다음을 참조하세요.

2단계: 응답 확인

성공적인 응답은 다음과 같습니다.

{
    "messages": [{
       "id": "message-id"
    }]
}