5.12.0 5.11.0 5.10.0 5.9.0 5.8.0 5.7.0 5.6.0 5.5.0 5.4.0 5.3.0 5.2.0 5.1.0 5.0 4.10 4.9 4.8 4.7 4.6 4.5.3 4.5.2 4.5.1 4.5 4.4 4.3
5.12.0 5.11.0 5.10.0 5.9.0 5.8.0 5.7.0 5.6.0 5.5.0 5.4.0 5.3.0 5.2.0 5.1.0 5.0 4.10 4.9 4.8 4.7 4.6 4.5.3 4.5.2 4.5.1 4.5 4.4 4.3

WrapUp Message


When an agent wants to tag full or portions of a conversation by attaching admin-defined categories (from the UI) to it, Wrap Up message API is used.



Properties and Example


Properties


Property

Desc.

type - String - Required

value = "WRAPUP"

wrapups- Array - Required

more than one category can be attached.

Parameters:

  • categoryName - Required - category as selected by the agent

  • value - Required - any value as specified by the agent

markdownText - String - Optional

contains custom plain text sent by end user.

note - String - Optional

Additional details as added by the agent.



Code Example


{
        "markdownText": " ",
            "type": "WRAPUP",
            "wrapups": [
            {
                "categoryName": "Category1",
                "value": "internet disconnectivity"
            },
            {
                "categoryName": "Category2",
                "value": "plan upgradation"
            }
           ],
        "note": "optional"

}