mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* API: get poller group * missed string in doc * return all poller groups if name/id aren't specified * add missing doc link * style fixes * more style --------- Co-authored-by: Tony Murray <murraytony@gmail.com>
392 B
392 B
###get_poller_group
Gets a specific poller group or all if none is specified
Route: /api/v0/poller_group/:poller_group
- poller_group: optional name or id of the poller group to get
Output:
{
"status": "ok",
"get_poller_group": [
{
"id": 1,
"group_name": "test",
"descr": "test group"
}
],
"count": 1
}