Getting Recipient Group Details
Last updated - 09 July, 2023
You can use LogicMonitor REST API v3 to get recipient group details. You must authenticate yourself before making the API request.
Getting List of Recipient Groups
URI: GET /setting/recipientgroups
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/recipientgroups?fields=id,name |
size | Integer | The number of result to display. A maximum of 1000 results can be requested in a GET request. By default, a list of 50 recipient groups is returned if a value is not provided for this parameter. Example – /setting/recipientgroups?size=5 |
offset | Integer | The number of result to offset the displayed results. Example – /setting/recipientgroups?offset=2 |
filter | String | The response is filtered according to the operator and specified value that is, filter=property:value
Operators include:
Example – /setting/recipientgroups?filter=name!~LMQA* |
Getting Details of Specific Recipient Group
URI: GET /setting/recipientgroups/{id}
Parameter | Type | Description |
id | Integer | (Mandatory) The Id of the recipient group whose details you want to get. |