globalGroupsGet method

Future<Map<String, dynamic>> globalGroupsGet()
inherited

globalGroupsGet -> /v1/groups

Requests a list of all the configured global groups.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": []
}

Implementation

Future<Map<String, dynamic>> globalGroupsGet() async {
  String url = '/v1/groups';

  return await call('get', url, httpAccept: 'application/json');
}