ข้ามไปที่เนื้อหา

Version 1.2

Changelog

  • Add tiplife/template
  • Add tiplife/carousel

tiplife template

ส่งข้อความตาม Template

curl -v -X POST {endpoint}/tiplife/template \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {access token}' \
-d '{
    "customer_uid": "U21850f073xxxxxx",
    "customer_ref": "216A8FBE89xxxxxxxxxxxxx",
    "title": "ทดสอบหัวข้อ",
    "alt_text": "ทดสอบหัวข้อ",
    "desc": "รายละเอียด ...",
    "note": "บันทึกอื่น ๆ ...",
    "contents": [
        {
            "label": "หัวข้อ",
            "text": "ข้อมูล"
        },
        {
            "label": "หัวข้อ",
            "text": "ข้อมูล"
        },
        {
            "label": "หัวข้อ",
            "text": "ข้อมูล"
        },
        {
            "label": "หัวข้อ",
            "text": "ข้อมูล"
        }
    ],
    "action": {
        "label": "ดูรายละเอียด",
        "url": "https://tiplife-api.ecart2u.app"
    }
}'

ส่งข้อความตาม Template แบบ Carousel

curl -v -X POST {endpoint}/tiplife/carousel \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {access token}' \
-d '{
    "customer_uid": "U53c7dd1da91e619ad678ae59835ddc3f",
    "customer_ref": "1234",
    "alt_text": "ทดสอบหัวข้อ",
    "messages": [
        {
            "title": "ทดสอบหัวข้อ",
            "alt_text": "ทดสอบหัวข้อ",
            "desc": "ทดสอบหัวข้อ",
            "note": "ทดสอบหัวข้อ",
            "contents": [
                {
                    "label": "รายการ",
                    "text": "รายการที่ 1"
                },
                {
                    "label": "รายการ",
                    "text": "รายการที่ 1"
                },
                {
                    "label": "รายการ",
                    "text": "รายการที่ 1"
                }
            ],
            "action": {
                "label": "ดูรายละเอียด",
                "url": "https:\/\/tiplife-api.ecart2u.app",
                "color": "#0066cc",
                "background_color": "#ffdf01"
            }
        },
        {
            "title": "ทดสอบหัวข้อ",
            "alt_text": "ทดสอบหัวข้อ",
            "desc": "ทดสอบหัวข้อ",
            "note": "ทดสอบหัวข้อ",
            "contents": [
                {
                    "label": "ทดสอบหัวข้อ"
                },
                {
                    "label": "รายการ",
                    "text": "รายการที่ 1"
                },
                {
                    "label": "รายการ",
                    "text": "รายการที่ 1"
                }
            ],
            "action": {
                "label": "ดูรายละเอียด",
                "url": "https:\/\/tiplife-api.ecart2u.app",
                "color": "#0066cc",
                "background_color": "#ffdf01"
            }
        }
    ]
}'