The /tag/notification/ endpoint is used to view notification tags for use when tagging email addresses and phone numbers, and for inclusion when creating or updating events to constrain recipient lists.
Examples
List Event Tags (List method, GET)
curl --header "Authorization:ApiKey testuser:256ee09ded99b29036fac4de96acedb7e8af7bf7" https://www.statusdashboard.com/api/v1/tag/notification/
{ "meta": { "limit": 10, "next": null, "offset": 0, "previous": null, "total_count": 3 }, "objects": [ { "resource_uri": "/api/v1/tag/notification/1/", "tag_name": "Customers", "tag_value": "Banking" }, { "resource_uri": "/api/v1/tag/notification/2/", "tag_name": "Customers", "tag_value": "Retail" }, { "resource_uri": "/api/v1/tag/notification/3/", "tag_name": "Hierarchy", "tag_value": "C-Suite" }
] }
Upon success, you'll receive back an HTTP 200 (OK) indicating that the API call succeeded.