Push API

📘

Please Note

Push channel is supported via Webex Connect Messaging API v1. The endpoint for it is:[https://{YourRegion}.webexconnect.io/resources/v1/messaging].

Please modify YourRegion in the URL to reflect your tenant’s region. See Know your endpoint page.

Refer to our Postman Collection for trying various types of push notifications supported by Webex Connect.

Request Body for Push Notification

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory. App ID of the mobile/web asset configured in <<prodname>>.
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "title": "Notification Title", //Optional
                "text": "Android specific text message.", //Mandatory for Android Push notification
                "extras": { //Optional. Refer the Android extras section below.
                    "collapse_key": "{{collapse_key}}", //Optional. If you send multiple push notifications to a device with the same collapse key, and all of them are waiting in FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.
                    "time_to_live": "1000", //Optional. You can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), FCM will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit  from 0 to 2,419,200 seconds (0 to 28 days). If you don't set a limit, FCM will keep trying to deliver your message for up to 4 weeks.
                    "customtags": { // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                        "imageurl": "{{imageurl}}", // Custom tags object includes a reserved parameter called “imageurl”. This accepts a URL as a string and this parameter is used for sending images with notifications.
                        "Key1": "Value1" //Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                    },
                    "iconurl": "{{iconurl}}", //Optional, This accepts a URL as a string. Adding an icon for the push notifications can help create a unique, branded experience."
                    "notificationChannelId": "{{notificationChannelId}}", //Optional. Starting on Android 8.0, all notifications must be assigned to a Notification channel or it will not appear. Instead of disabling all the notifications, user can control notification by disabling a specific channel on the app.
                    "notificationaction": { //Optional. Define this object to specify an action to be taken when the notification is clicked. Please refer 'Android - notificationaction' section for different types of actions supported in the Webex Connect.
                        "action": "OPEN_URL", //Opens the respective link in your browser. 
                        "value": "{{url}}" //Accepts a URL as a string when the action is selected as 'OPEN_URL'.
                    }
                }
            },
            "ios": {
                "title": "Notification Title", //Optional
                "text": "iOS specific text message.", //Mandatory for iOS push notification
                "extras": { //Optiona. Refer the iOS extras section below.
                    "badge": "10", //Accepts integer, The number to be displayed as badge of the app icon.
                    "sound": "default", //You can pass either 'default' for the standard sound or specify a custom sound. To use the default sound, pass the value 'default,' and the system's default notification sound will be used. To add custom sounds, add files to the Xcode project root. Make sure Add to targets is selected when adding files so that they are automatically add to the bundle resources. External URLs are not supported and you need to pass the filename with extension (newsound.mp3) of the sound file.
                    "time_to_live": "1000", //Optional. You can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), APNs will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit upto 30days.
                    "customtags": {
                        "key1": "value1" // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                    },
                    "collapse_key": "{{collapse_key}}", //Optional. An arbitrary string that is used to replace the older message with new message when the older message did not reach the destination.
                    "attachmenturl": "{{attachmenturl}}", //Optional. This accepts a URL as a string and this parameter is used for sending images with notifications.
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked. Please refer 'iOS - notificationaction' section for different types of actions supported in the Webex Connect.
                        "action": "OPEN_URL", //Opens the respective link in your browser.
                        "value": "{{url}}" //Accepts a URL as a string when the action is selected as 'OPEN_URL'.
                    }
                }
            },
            "web": {
                "platform_types": [
                    "chrome",
                    "safari",
                    "firefox"
                ], //Mandatory for web push notification,
                "title": "<title text for web browser push message>", //Optional.
                "text": "<push message text for Web browser>", //Mandatory for web push notification
                "actiontext": "<Specifies the text of the button for safari browsers only>",
                "url": "<URL that opens when message is clicked>",
                "extras": {
                    "collapse_key": "<Alpha numeric key>", //Optional. If you send multiple push notifications to a device with the same collapse key, and all of them are waiting in FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.
                    "time_to_live": "<integer value>", //Number of seconds that a message may be stored if the user is not immediately available. Max of 51840000.  
                    "customtags": {
                        "key1": "object1",
                        "key2": {
                            "object2": "val"
                        },
                        "key3": [
                            "object3",
                            "object4"
                        ] //Optional, Refer the web extras section below.
                    }
                }
            },
            "interactive": { //Optional. Refer the interactive section below for different types of actions supported by Webex Connect.
                "category": "DOUBLE_YES_NO",
                "pushref": "ui", //Optional.
                "device_types": [
                    "ios",
                    "android"
                ],
                "actions": [
                    {
                        "action": "OPEN_URL",
                        "value": "https://www.cisco.com",
                        "identifier": "YES", //The identifier depends on the action.
                        "pos": 1 // Specifies the position or sequence of the button. Pass either 1 or 2.
                    },
                    {
                        "action": "OPEN_APP",
                        "identifier": "NO", //The identifier depends on the action.
                        "pos": 2 //Specifies the position or sequence of the button. Pass either 1 or 2.
                    }
                ]
            }
        }
    },
    "expiry": "{{expiry}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. 
    "callbackData": "{{callbackData}}", //Optional.
    "notifyurl": "{{webhookurl}}" //Optional.
}

Push Messaging Parameters

The following are the parameters of the request body:

ParameterTypeMandatoryDescription
deliverychannelstringyesSet the value to 'push' for the push notification channel.
appidstringyesApp ID of the mobile/web asset configured in Webex Connect.
channelsJSONObjectyesContains a push object as defined in the next row.
pushJSONObjectyesContains android, ios, web and interactive objects. At least one of the three objects, i.e. the Android, iOS, or web object is mandatory.
androidJSONObjectNoThis object is for Android-specific push settings. For more information, see android.
iosJSONObjectNoThis object is for iOS-specific push settings. For more information, see iOS.
webJSONObjectNoThis object is for web browser-specific push settings. For more information, see web.
interactiveJSONObjectNoThis object contains the information of buttons and their actions in an interactive push notification. For more information, see interactive.
correlationidstringNoA unique identifier that can be used to correlate requests and their subsequent responses. The correlation-id is sent as part of delivery updates to outbound webhooks and notify URLs. It can be up to 50 bytes long.
notifyurlstringNoWebex Connect will send delivery updates to the URL specified in the notifyurl parameter. The notifyurl can also be configured while creating a service. If the URL is specified in both the service and the messaging API, preference will be given to the messaging API request.
callbackDatastringNoAny metadata that needs to be sent alongside delivery updates to the notiyurl.
expirystringNoIf the expiry time provided is crossed by the time the API request is processed,Webex Connect will not attempt delivery of the message. The expiry time is in UTC format. For example, 2015-04-12T13:00:19.456Z or 2015-04-12T18:30:19.456+5:30.
message templateJSONObjectNoThe message block references a template via the template ID which is created within the Webex Connect platform. Along with the template ID, you can pass a JSON object called ‘parameters'. You can send a key-value pair in the 'parameters’ object

These key-value pairs are supplied to the template for substitution in the final message.

{
"message": {
"template": "TEMPLATE ID",
"parameters": {
"parameter1": "VALUE",
"parameter2": "VALUE",
"parameter3": "VALUE"
}
}
}

Note: If you use message templates, then the parameter name of the key-value pair should match the parameter name specified in the template. The parameters in this message block are overridden if a channel-specific parameter block is also used.
destinationJSONArrayYesThe destination parameter holds the user ID or push ID of the targeted customer. It is an array that can be up to 1,000 entries.

Here are the syntaxes for various ID types:

"userid": ["userid"]
"android_pushid": ["android_pushid"]
"hms_pushid": ["hms_pushid"]
"ios_pushid": ["ios_pushid"]
"chrome_pushid": ["chrome_pushid"]
"firefox_pushid": ["firefox_pushid"]

📘

Note

The overall payload limit for the messaging API for Push notification is 4KB.

Components of Push Object

A push object comprises the following components:

Android

To send push notifications to AndroidA devices

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "", //Mandatory, for Android Push Notifications.
                "title": "Notification Title", //Optional
                "extras": {
                    //Please refer to the extras section
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
ParameterTypeMandatoryDescription
titleStringNoA heading displayed above the top of the notification text to summarize its content or purpose.
textStringYesThe text for the notification body for Android.
extrasJSONObjectNoPlease refer to the extras section right below this table.

push > android > Android extras

To change the appearance of your push notifications, such as sending images, icons, etc., and managing notification delivery use the extras object.

"extras": {
        "collapse_key": "<Alpha numeric key>",
        "time_to_live": "<integer value>",
        "customtags": {
            "key1": "object1",
            "key2": {
                "object2": "val"
            },
            "key3": [
                "object3",
                "object4"
            ]
        },
        "notificationaction": {
            "action": "OPEN_URL",
            "value": "www.cisco.com"
        },
        "iconurl": "{{iconurl}}", //Optional. This accepts a URL as a string. Adding an icon for the push notifications creates a unique, branded experience."
        "notificationChannelId":"{{notificationChannelId}}" //Optional. Starting with Android 8.0, all notifications must be assigned to a Notification channel or it will not appear. Instead of disabling all the notifications, user can control notification by disabling a specific channel on the app.
    }
{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Mandatory
                "extras": {
                    "sound": "default", //Optional
                    "customtags": { // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                        "imageurl": "https://file-examples.com/wp-content/storage/2017/10/file_example_JPG_100kB.jpg" // customtags object contains a reserved parameter: imageurl: It accepts a URL as string. This parameter is used to send images in notification.
                    },
                    "notificationChannelId": "" //Optional. Starting on Android 8.0, all notifications must be assigned to a Notification channel or it will not appear. Instead of disabling all the notifications, user can control notification by disabling a specific channel on the app.
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "collapse_key": "{{collapse_key}}", //Optional. If you send multiple push notifications to a device with the same collapse key, and all of them are waiting in FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.
                    "time_to_live": "1000", //Optional. You can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), FCM will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit  from 0 to 2,419,200 seconds (0 to 28 days). If you don't set a limit, FCM will keep trying to deliver your message for up to 4 weeks.
                    "customtags": { // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                        "imageurl": "{{imageurl}}", // Custom tags object includes a reserved parameter called “imageurl”. This accepts a URL as a string and this parameter is used for sending images with notifications.
                        "Key1": "Value1" //Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                    },
                    "iconurl": "{{iconurl}}", //Optional, This accepts a URL as a string. Adding an icon for the push notifications creates a unique, branded experience."
                    "notificationChannelId": "" //Optional. Starting on Android 8.0, all notifications must be assigned to a Notification channel or it will not appear. Instead of disabling all the notifications, user can control notification by disabling a specific channel on the app.
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
ParameterTypeMandatoryDescription
collapse_keyStringNoIf you send multiple push notifications to a device with the same collapse key, and all of them are waiting in the FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.
time_to_liveStringNoYou can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), FCM will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit from 0 to 2,419,200 seconds (0 to 28 days). If you don't set a limit, FCM will keep trying to deliver your message for up to 4 weeks.

Note: If the value is set to 0 seconds, the message will expire immediately, and FCM will not store the notification or attempt to redeliver it.
sound (Discontinued)StringNoNote: This parameter is no longer supported. It will get ignored even if we pass any value.
A Default / Custom sound will be played when the notification is delivered.

The options are:

_ default

_ custom sound
delay_while_idle (Deprecated)StringNoIf true, the message delivery is delayed when the customer’s device is idle.

Options are:

_ true

_ false
customtagsJSONObjectNoCustom tags are flexible and can be crafted to match the specific needs and logic of your business. Simply pass a key-value pair, where the value can be a string, a JSON object, or a JSON array depending on your requirement.

Note: Custom tags object includes a reserved parameter called “imageurl”. This accepts a URL as a string and this parameter is used for sending images with notifications on Android devices only.
notificationactionJSONObjectNoDefine this object to add an action when the notification is clicked. The sub-parameters of this block are:

_ action

_ value
Please refer to the notificationaction section right below this table.
iconurlStringNoThis accepts a URL as a string. Adding an icon for the push notifications creates a unique, branded experience.
notificationChannelIdStringNoStarting with Android 8.0 (API level 26), all notifications must be assigned to a notification channel; otherwise, they will not appear to the user. Rather than disabling all notifications, users have the option to control notifications by disabling a specific channel within the app. This allows for more granular control over the types of notifications they wish to receive. For more info on the Notification Channel, refer to the Android official documentation on the notification channel.

Android - notificationaction

Traditionally, tapping a push notification simply opens an app. However, modern notifications can offer users much more. With just a tap, you can now provide up to five distinct actions, allowing for immediate and varied responses to notifications without ever opening the app.

Following are the sample codes for various notification actions supported in Webex Connect:

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optioanl
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_URL", //Opens the respective link in your browser.
                        "value": "{{url}}" //Accepts a URL as a string when the action is selected as 'OPEN_URL'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{inappid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPENWEBVIEW", // launches a web view inside your app.
                        "value": "https://www.cisco.com" //Accepts a URL as a string when the action is selected as 'OPENWEBVIEW'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{inappid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "DEEPLINK", //will take you to destination defined in the link.
                        "value": "MU20051001://command/Notifications"
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{inappid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_HTML", // Renders the HTML payload within the app.
                        "value": "<a href=https://www.cisco.com>Click on it for Cisco</a>" // Accpets HTML tags, when the action is selected as 'OPEN_HTML'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{inappid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_APP" //Simply opens the app corresponding to the notification. Does not require value for 'Open_Action'.
                    }
                }
            }
        }
    },
    "expiry": "", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

The following parameters are part of the notification action object which in turn is part of the extras object.

ParameterTypeMandatoryDescription
actionStringNoYou can define the action of your push notification that is triggered when a user taps on it. Following are the possible values for the 'action' parameter supported by Webex Connect.
OPEN_URL would open the respective link in your browser.
OPENWEBVIEW launches a web view inside the browser of your app.
DEEPLINK will take you to the specific section inside the app that is defined in the link.
OPEN_HTML renders the HTML payload within the app.
* OPEN_APP simply opens the app corresponding to the notification.
valueStringNoSpecifies the value that is used to complete the action configured. Following are the example values for each of the notification actions:

- if you configure action as OPEN_URL, then you have to configure value with a URL such as www.cisco.com
- if you configure action as OPENWEBVIEW, then you have to configure value with a URL such as www.cisco.com
- if you configure action as DEEPLINK, then you have to configure value with deep link such as "{{inappid}}://command/Notifications".
- if you configure action as OPENHTML, then you have to configure _value with HTML tags such as "Click on it for Cisco".
- if the action is set to OPENAPP, value is not required.

📘

Note

It is not mandatory to define notificationaction. But if you set an action, you must specify a _value _that is used to complete the configured action. By default Open App is the notificationaction set by android for all notification.

iOS

Following are the sample request bodies to send iOS Push notifications:

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "iOS specific text message.", //Mandatory
                "title": "Notification Title", //Optional
              	"extras": {
                    //Optional.Please refer extras section.
                }
            }
        },
        "expiry": "{{expirytime}}", //Optional. UTC time format.
        "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
        "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
        "notifyurl": "{{webhookurl}}" //Optional.
    }
}
{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "iOS specific text message.", //Mandatory
                "title": "Notification Title", //Mandatory
                "extras": {
                    "attachmenturl": "{{attachmenturl}}" ////Optional. This accepts a URL as a string and this parameter is used for sending images with notifications.
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

To send push notifications to iOS devices, the following are the parameters required:

ParameterTypeMandatoryDescription
titleStringNoA heading is displayed above the top of the notification text to summarize its content or purpose.
textStringYesThe text for the notification body for iOS.
extrasJSONObjectNoPlease refer to the extras section right below this table.

push > ios > ios extras

To change the appearance of your iOS push notifications, such as sending images, icons, etc., and managing notification delivery use the extras object.

Following are the sample request bodies for the extra object.

{
    "badge": "<badge number>",
    "sound": "<default/custom sound>",//For custom sound you need to pass the file name with extension.
    "time_to_live": "<integer value>",
    
    "customtags": {
        "key1": "object1",
        "key2": {
            "object2": "val"
        },
        "key3": ["object3", "object4"]
    },
    "notificationaction": {
        "action": "OPEN_URL",
        "value": "www.google.com"
    }
}
{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "iOS specific text message.", //Mandatory
                "title": "Notification Title", //Mandatory
                "extras": {
                    "badge": "10", //Accepts integer, The number to be displayed as badge of the app icon.
                    "sound": "default", //You can pass either 'default' for the standard sound or specify a custom sound. To use the default sound, pass the value 'default,' and the system's default notification sound will be used. To add custom sounds, add files to the Xcode project root. Make sure Add to targets is selected when adding files so that they are automatically add to the bundle resources. External URLs are not supported and you need to pass the filename with extension (newsound.mp3) of the sound file.
                    "time_to_live": "1000", //Optional. You can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), APNs will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit upto 30day
                    "customtags": {
                        "key1": "value1" // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                    },
                    "collapse_key": "{{collapse_key}}", //Optional. An arbitrary string that is used to replace the older message with new message when the older message did not reach the destination.
                    "attachmenturl": "{{attachmenturl}}" //Optional. This accepts a URL as a string and this parameter is used for sending images with notifications.
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
ParameterTypeMandatoryDescription
badgeStringNoThe number to be displayed as a badge of the app icon.
soundStringNoDefault or Custom sound that should be played when the notification is delivered.

The options are:

_ default

_ file name of custom sound

You can pass either 'default' for the standard sound or specify a custom sound. To use the default sound, pass the value 'default,' and the system's default notification sound will be used. To add custom sounds, add the audio files to the Xcode project root. Make sure Add to targets is selected when adding files so that they are automatically added to the bundle resources. External URLs are not supported. You need to pass the filename with the extension (newsound.mp3) of the sound file.
Custom sounds enhance your app's experience by adding a unique touch to your notifications. You can set a specific sound for all notifications or just for certain ones, depending on the action.

For example: for emergency alerts, "Hospital Emergency" might play an ambulance siren sound, making the notifications more attention-grabbing. Meanwhile, social networking apps might use custom sounds exclusively for messages, allowing users to instantly recognize personal interactions and distinguish these alerts from regular system notifications.
time_to_liveStringNoYou can specify the lifespan of a message. If your message can't be delivered right away (like if a phone is off or offline), APNs will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit from 0 to 2,592,000 seconds (0 to 30 days). If you don't set a limit, APNS will keep trying to deliver your message for up to 30 days.
Note: If the value is set to 0 seconds, the message will expire immediately, and APNs will not store the notification or attempt to redeliver it.
customtagsJSONObjectNoCustom tags are flexible and can be crafted to match the specific needs and logic of your business. Simply pass a key-value pair, where the value can be a string, a JSON object, or a JSON array depending on your requirement.
collapse_keyStringNoIf you send multiple push notifications to a device with the same collapse key, and all of them are waiting in the FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide. This parameter would only work if you use FCM as the Push provider.
attachmenturlStringNoThis accepts a URL as a string and this parameter is used for sending images with notifications.
notificationactionJSONObjectNoDefine this object to add an action when the notification is clicked. The sub-parameters of this block are:

_ action

_ value
Please refer notificationaction section right below this table.

iOS - notificationaction

Traditionally, tapping a push notification simply opens an app. However, modern notifications can offer users much more. With just a tap, you can now provide up to five distinct actions, allowing for immediate and varied responses to notifications without ever opening the app.

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "iOS specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_URL", //Opens the respective link in your browser.
                        "value": "{{url}}" //Accepts a URL as a string when the action is selected as 'OPEN_URL'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{appid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "ios specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPENWEBVIEW", // launches a web view inside your app.
                        "value": "https://www.cisco.com" //Accepts a URL as a string when the action is selected as 'OPENWEBVIEW'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{appid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "ios specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "DEEPLINK", //will take you to destination defined in the link.
                        "value": "{{inappid}}://command/Notifications"
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{appid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "ios specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_HTML", // Renders the HTML payload within the app.
                        "value": "<a href=https://www.cisco.com>Click on it for Cisco</a>" // Accpets HTML tags, when the action is selected as 'OPEN_HTML'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}
{
    "deliverychannel": "push", //Mandatory.
    "appid": "{{appid}}", //Mandatory.
    "destination": [
        {
            "userid": [ // You can pass either userid or customerid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "ios": {
                "text": "ios specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "extras": {
                    "notificationaction": { //Define this object to specify an action to be taken when the notification is clicked.
                        "action": "OPEN_APP" //Simply opens the app corresponding to the notification. Does not require value for 'Open_App'.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

The following parameters are part of the notification action object, which in turn is part of the extras object.

ParameterTypeMandatoryDescription
actionStringNoYou can define the action of your push notification that is triggered when a user taps on it. Following are the possible values for the 'action' parameter supported by Webex Connect.
OPEN_URL would open the respective link in your browser.
OPENWEBVIEW launches a web view inside the browser of your app.
DEEPLINK will take you to the specific section inside the app that is defined in the link.
OPEN_HTML renders the HTML payload within the app.
* OPEN_APP simply opens the app corresponding to the notification.
valueStringNoSpecifies the value that is used to complete the action configured. Following are the example values for each of the notification actions:

- if you configure action as OPEN_URL, then you have to configure value with a URL such as www.cisco.com
- if you configure action as OPENWEBVIEW, then you have to configure value with a URL such as www.cisco.com
- if you configure action as DEEPLINK, then you have to configure value with deep link such as "{{inappid}}://command/Notifications".
- if you configure action as OPENHTML, then you have to configure _value with HTML tags such as "Click on it for Cisco".
- if the action is set to OPENAPP, value is not required.

📘

Note

It is not mandatory to define notification action. But if you set an action, you must specify a _value _that is used to complete the configured action. By default Open App is the notificationaction set by iOS for all notification.

Web

Following are the sample request bodies to send Web Push notifications:

📘

Note

Currently, Web Push notifications are supported only for Chrome and Firefox.

// Web browser notification
{
    "web": {
        "title": "<title text for web browser push message>",
        "text": "<push message text for Web browser>",
        "url": "<URL that opens when message is clicked>",
        "actiontext": "<Specifies the text of the button for safari browsers only>",
        "platorm_types": [
            "chrome",
            "safari",
            "firefox"
        ],
        "extras": {
            "collapse_key": "<Alpha numeric key>", //If two messages have same collapse key, older message is discarded on the end device.
            "time_to_live": "<integer value>", //Number of seconds that a message may be stored if the user is not immediately available. Max of 51840000.
            "customtags": {
                "key1": "object1",
                "key2": {
                    "object2": "val"
                },
                "key3": [
                    "object3",
                    "object4"
                ]
            }
        }
    }
}
{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "web": {
                "platform_types": [ //This parameter is mandatory; you can specify "Chrome", "Firefox", or any combination of these two to indicate the browser(s) to which the push message will be sent.
                    "firefox",
                    "chrome"
                ],
                "text": "Web Browser specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "url": "https://www.cisco.com" // Specifies the URL that opens when the message is clicked.
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

To send push notifications to web browsers, the following are the parameters in the request body of the Web Push notification:

ParameterTypeMandatoryDescription
platform_typesJSONArrayYesSpecify "Chrome", "Firefox", "Safari", or any combination of these three to indicate the browser(s) to which the message will be sent.
titleStringYesA heading is displayed above the top of the notification text to summarize its content or purpose.
textStringYesThe text for the notification body for a Web browser.
urlStringNoURL of the webpage to which a user is redirected upon clicking the notification.
actiontextStringYesIt is the customizable label for the button that users can click to interact with the notification. The label provides a better context of the URL to which the user will be redirected. E.g. A notification asking user to create a new account can have a button with the label - 'Sign-Up'
extrasJSONObjectNoPlease refer to the extras

push > web > extras

To manage notification delivery, use the extras object.

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "web": {
                "platform_types": [ //This parameter is mandatory; you can specify "Chrome", "Firefox", or any combination of these two to indicate the browser(s) to which the push message will be sent.
                    "firefox",
                    "chrome"
                ],
                "text": "Web Browser specific text message.", //Mandatory
                "title": "Notification Title", //Optional
                "url": "https://www.cisco.com", // Specifies the URL that opens when the message is clicked.
                "extras": {
                    "collapse_key": "{{collapse_key}}", //Optional. If you send multiple push notifications to a device with the same collapse key, and all of them are waiting in FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.
                    "time_to_live": "1000", //Optional. You can specify the lifespan of a message. If your message can't be delivered right away (like if a device is off or offline), FCM will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit  from 0 to 2,419,200 seconds (0 to 28 days). If you don't set a limit, FCM will keep trying to deliver your message for up to 4 weeks.
                    "customtags": {
                        "key1": "Value1" // Optional. A user defined key-value pair. The value can be a string or JSON object, or a JSON array.
                    }
                }
            }
        }
    },
    "expiry": "{{expirytime}}", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

ParameterTypeMandatoryDescription
collapse_keyStringNoIf you send multiple push notifications to a device with the same collapse key, and all of them are waiting in the FCM server to be delivered to the device, FCM will only send the latest push notification for the collapse key you provide.

Note:The parameter collapse_key does not apply to the Safari browser.
time_to_liveStringNoYou can specify the lifespan of a message. If your message can't be delivered right away (like if a device is off or offline), FCM will hold onto it and try again later. But some messages, like video call alerts or event invites, are only useful for a short time. For those, you can set a time limit from 0 to 2,419,200 seconds (0 to 28 days). If you don't set a limit, FCM will keep trying to deliver your message for up to 4 weeks.
Note: If the value is set to 0 seconds, the message will expire immediately, and FCM will not store the notification or attempt to redeliver it.
customtagsJSONObjectNoCustom tags are flexible and can be crafted to match the specific needs and logic of your business. Simply pass a key-value pair, where the value can be a string, a JSON object, or a JSON array depending on your requirement.

interactive

Interactive Notifications are notifications with buttons for additional actions. Users can interact with these notifications without opening the app, allowing them to take immediate and specific actions.Webex Connect provides a collection of 17 predefined interactive notification types, each designed to address the most commonly observed use cases. Please refer to the table , for detailed information on the interactive notification types.

📘

Note

Interactive Push Notifications are supported exclusively for mobile apps and are not available for web push.

Following are the sample request bodies to send interactive push notifications:

{
    "deliverychannel": "push", //Mandatory
    "appid": "{{inappid}}", //Mandatory
    "destination": [
        {
            "userid": [ // You can pass either userid or pushid as a destination.
                "{{userid}}" //Mandatory.
            ]
        }
    ],
    "channels": {
        "push": {
            "android": {
                "text": "Android specific text message 1.", //Mandatory
                "title": "Notification Title" //Optional
            },
            "ios": {
                "text": "Android specific text message.", //Mandatory
                "title": "Notification Title" //Optional
            },
            "interactive": {
                "category": "DOUBLE_YES_NO",
                "pushref": "ui",
                "device_types": [
                    "ios",
                    "android"
                ],
                "actions": [
                    {
                        "action": "OPEN_URL",
                        "value": "https://www.cisco.com",
                        "identifier": "YES",
                        "pos": 1
                    },
                    {
                        "action": "OPEN_APP",
                        "identifier": "NO",
                        "pos": 2
                    }
                ]
            }
        }
    },
    "expiry": "", //Optional. UTC time format.
    "correlationid": "{{correlationid}}", //Optional. The CorrelationID is a unique identifier that you can attach to every request as a reference a particular transaction or event. This is configured as a part of the request.
    "callbackData": "{{callbackData}}", //Optional. Data that you have configured to receive on the notify Url. This is configured as a part of the request.
    "notifyurl": "{{webhookurl}}" //Optional.
}

The following parameters are part of the interactive parameter block which in turn is part of the push block.

ParameterTypeMandatoryDescription
device_typesJSONArrayYes, at least oneThe device types that should receive the interactive notifications. You can pass "android," "ios," or both.

_ android

_ ios
pushrefStringNoThis is an optional parameter that can be passed in the interactive object to pass additional context along with the interactive buttons. This parameter is returned as part of the outbound webhook payload of Read Receipts.
categoryStringYesThere are 17 predefined interactive notification types, and selecting at least one is mandatory for sending an interactive notification.

_ SINGLE_DISMISS

_ SINGLE_OPEN

_ SINGLE_SUBSCRIBE

_ SINGLE_UNSUBSCRIBE

_ SINGLE_SHARE

_ SINGLE_DEEPLINK

_ SINGLE_REPLY

_ ( DOUBLE_YES_NO

_ DOUBLE_ACCEPT_CANCEL

_ DOUBLE_SHARE_CANCEL

_ DOUBLE_SHOPNOW_CANCEL

_ DOUBLE_LATER_NOW

_ DOUBLE_PLAY_NOW_PLAY_LATER

_ DOUBLE_OK_LEARN_MORE

_ DOUBLE_SUBSCRIBE_UNSUBSCRIBE

_ DOUBLE_BUY_NOW_BUY_LATER

* DOUBLE_LIKE_SHARE
actionsJSONArrayYesThis is a mandatory JSONArray that varies depending on the selected category. Based on the category chosen, the identifiers, values, and actions may differ. Please refer to the actions.

interactive>actions

ParameterTypeMandatoryDescription
posStringYesThe button's position or sequence is specified by either 1 or 2.
actionStringNoActions available for the notification buttons are

_ DISMISS (Dismisses the notification).

_ OPEN_URL (Opens a specified URL, requires a URL to be provided in the value parameter).

_ OPEN_APP (Launches the application).

_ DEEPLINK (Navigates to a specific page within the app, requires the destination page to be specified in the value parameter).

_ OPENWEBVIEW (Opens a URL within an in-app web view, requires a URL to be provided in the value parameter).

_ SHARE (Initiates a sharing operation, requires the content intended for sharing to be specified).
identifierStringNoThe "identifier" depends on the action chosen. For example, if the action is _DOUBLESHOPNOW_CANCEL, then identifier 1 corresponds to SHOPNOW, and identifier 2 corresponds to CANCEL. Refer to the description of the category parameter in the interactive section for a detailed list of all identifiers.
valueStringNo, unless action is OPEN_URL, DEEPLINK, OPENWEBVIEW or SHAREThe "value" specifies the necessary information for the action. For example, if you configure the action as OPENURL, then you have to configure the value with a URL such as www.cisco.com.
Note: If the action is set to OPENAPP, value is not required._