assignees
Overview
Name | assignees |
Type | Resource |
Id | github.issues.assignees |
Fields
Name | Datatype |
---|---|
id | integer |
name | string |
avatar_url | string |
email | string |
events_url | string |
followers_url | string |
following_url | string |
gists_url | string |
gravatar_id | string |
html_url | string |
login | string |
node_id | string |
organizations_url | string |
received_events_url | string |
repos_url | string |
site_admin | boolean |
starred_at | string |
starred_url | string |
subscriptions_url | string |
type | string |
url | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
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. |
check_user_can_be_assigned_to_issue | EXEC | assignee, issue_number, owner, repo | Checks if a user has permission to be assigned to a specific issue. If the assignee can be assigned to this issue, a 204 status code with no content is returned.Otherwise a 404 status code is returned. |