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