Fetch all alert types

GET {{base_url}}/api/alert_manager/v1/types

Fetches all registered alert types.

Request Params

KeyDatatypeRequiredDescription
os_typestring(Optional) A filter by the list of operating systems supported by the alert types.

Type: Array of String Array type description: Type: String Allowed values:

  • ios
  • linux
  • macos
  • windows | | category | null | | (Optional) A filter by list of type categories. A list of registered categories can be obtained by sending a GET request to the /categories endpoint.

Type: Array of String Array type description: Type: String | | order | string | | (Optional) An ordering filter that orders the results by column name. If no operator provided, the column will be ordered in ascending order.

Following columns can be used:

  • id
  • severity
  • category

Available operators:

  • asc - ascending
  • desc - descending

Type: String |

RESPONSES

status: OK

{"items":[{"supportedOS":["ios","linux","macos","windows"],"contextKeys":["planId","resourceId"],"enabled":true,"id":"cti.a.p.am.alert.v1.0~a.p.backup.failed.v1.0","searchableDetails":["planName","resourceName"],"category":"cti.a.p.am.category.v1.0~a.p.backup.v1.0","severity":"critical"}]}