list_assignees | SELECT | owner, repo | Lists the available assignees for issues in a repository. |
add_assignees | INSERT | issue_number, owner, repo | Adds up to 10 assignees to an issue. Users already assigned to an issue are not replaced. |
remove_assignees | DELETE | issue_number, owner, repo | Removes one or more assignees from an issue. |
check_user_can_be_assigned | EXEC | assignee, owner, repo | Checks if a user has permission to be assigned to an issue in this repository.
If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
Otherwise a 404 status code is returned. |