The /tag/event/ endpoint is used to view event tags for use when creating or updating events.
Examples
List Event Tags (List method, GET)
curl --header "Authorization:ApiKey testuser:256ee09ded99b29036fac4de96acedb7e8af7bf7" https://www.statusdashboard.com/api/v1/tag/event/
{ "meta": { "limit": 10, "next": null, "offset": 0, "previous": null, "total_count": 3 }, "objects": [ { "resource_uri": "/api/v1/tag/event/1/", "tag_name": "Severity", "tag_value": "High" }, { "resource_uri": "/api/v1/tag/event/2/", "tag_name": "Severity", "tag_value": "Medium" }, { "resource_uri": "/api/v1/tag/event/3/", "tag_name": "Severity", "tag_value": "Low" }
] }
Upon success, you'll receive back an HTTP 200 (OK) indicating that the API call succeeded.