async addAssignee(accountId: string, keyOrId: string) {
        const assigneeUrl = this.getUrl('issue', keyOrId, 'assignee');

        await this.requestPut(assigneeUrl, schemas.assignee(accountId));
    }