getSystemInfo method

Future<SystemInfoEntity> getSystemInfo()

Returns the system information for the Confluence Cloud tenant. This information is used by Atlassian.

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

Implementation

Future<SystemInfoEntity> getSystemInfo() async {
  return SystemInfoEntity.fromJson(await _client.send(
    'get',
    'wiki/rest/api/settings/systemInfo',
  ));
}