getGroupByQueryParam method

  1. @deprecated
Future<Group> getGroupByQueryParam(
  1. String name
)

Returns a user group for a given group name.

Permissions required: Permission to access the Confluence site ('Can use' global permission).

Implementation

@deprecated
Future<Group> getGroupByQueryParam(String name) async {
  return Group.fromJson(await _client.send(
    'get',
    'wiki/rest/api/group/by-name',
    queryParameters: {
      'name': name,
    },
  ));
}