GET - Notification

GET Notification Details

The GET /customnotification endpoint allows for users to pull back information on their Custom Notifications based by the notification GUID.

The GET HTTP Endpoint for Custom Notification is listed below:

HTTP Verb: GET
URI: https://{domain}.dataview.services.10-4.com/v1/customnotifications/{NotificationGUID}
Authentication: Bearer Token

Success response:

{
    "data": [
        {
            "notificationGuid": "fdd14e69-0dc5-4f66-b328-aa6cfea0c12c",
            "notificationName": "Stop Notification with Filters",
            "notificationRecipientType": "stopLevel",
            "notificationTypeLabel": "shipmentStatusChange",
            "notifyStopContactsByEmail": true,
            "notifyStopContactsBySms": false,
            "notificationMetaData": null,
            "notificationTypes": [
                "ShipmentStatusEnRoute",
                "ShipmentStatusAtShipper",
                "ShipmentStatusInTransit"
            ],
            "filters": [
                {
                    "propertyName": "ModeType",
                    "propertyValue": "TruckLoad"
                }
            ],
            "lastUpdateUserName": "[email protected]",
            "lastUpdateDate": "2018-08-16T06:36:06.3877813+00:00",
            "emailList": [],
            "smsList": []
        }
    ],
    "messages": [],
    "totalPossibleCount": 1
}