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