Getting Escalation Chain Details
Last updated on 07 October, 2024You can use LogicMonitor REST API v3 to get escalation chain details. You must authenticate yourself before making the API request.
Getting List of Escalation Chain
You can include the following query parameters to control the kind of data to include in the response and how it is formatted.
URI: GET /setting/alert/chains
Parameter | Type | Description |
fields | String | The response is filtered to include only the specified fields for each object. You can provide a list of properties separated by a comma. Example – /setting/alert/chains?fields=name,id |
size | Integer | Indicates the number of results to display. A maximum of 1000 results can be requested in a GET call. By default, a list of 50 escalation chains is returned if a value is not provided for this parameter. Example – /setting/alert/chains?size=5 |
offset | Integer | Indicates the number of results to offset the displayed results. Example – /setting/alert/chains?offset=2 |
filter | String | The response is filtered according to the operator and specified value that is, filter=property:value
/setting/alert/chains?filter=name~"serviceNow" |
Getting Details of a Specific Escalation Chain
URI: GET /setting/alert/chains/{id}
Parameter | Type | Description |
id | Integer | (Mandatory) ID of the escalation chain that you want to get. |
fields | String | The response is filtered to include only the specified fields for each object. You can provide a list of properties separated by a comma. Example – /setting/alert/chains/{id}?fields=name,id |