removeContentWatcher method

Future<void> removeContentWatcher({
  1. required String xAtlassianToken,
  2. required String contentId,
  3. String? key,
  4. String? username,
  5. String? accountId,
})

Removes a user as a watcher from a piece of content. 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> removeContentWatcher(
    {required String xAtlassianToken,
    required String contentId,
    String? key,
    String? username,
    String? accountId}) async {
  await _client.send(
    'delete',
    'wiki/rest/api/user/watch/content/{contentId}',
    pathParameters: {
      'contentId': contentId,
    },
    queryParameters: {
      if (key != null) 'key': key,
      if (username != null) 'username': username,
      if (accountId != null) 'accountId': accountId,
    },
    headers: {
      'X-Atlassian-Token': 'no-check',
    },
  );
}