async addWatcher(accountId: string, keyOrId: string) {
        const watchersUrl = this.getUrl('issue', keyOrId, 'watchers');

        await this.requestPost(watchersUrl, schemas.watcher(accountId));
    }