removeSpaceWatch method

Future<void> removeSpaceWatch({
  1. required String spaceKey,
  2. String? key,
  3. String? username,
  4. String? accountId,
})

Removes a user as a watcher from a space. Choose the user by doing one of the following:

  • Specify a user via a query parameter: Use the accountId to identify the user.
  • Do not specify a user: The currently logged-in user will be used.

Permissions required: 'Confluence Administrator' global permission if specifying a user, otherwise permission to access the Confluence site ('Can use' global permission).

Implementation

Future<void> removeSpaceWatch(
    {required String spaceKey,
    String? key,
    String? username,
    String? accountId}) async {
  await _client.send(
    'delete',
    'wiki/rest/api/user/watch/space/{spaceKey}',
    pathParameters: {
      'spaceKey': spaceKey,
    },
    queryParameters: {
      if (key != null) 'key': key,
      if (username != null) 'username': username,
      if (accountId != null) 'accountId': accountId,
    },
  );
}