Skip to main content

issue_comments

Overview

Nameissue_comments
TypeResource
Idgithub.reactions.issue_comments

Fields

NameDatatypeDescription
idinteger
node_idstring
userobjectA GitHub user.
contentstringThe reaction to use
created_atstring

Methods

NameAccessible byRequired ParamsDescription
list_for_issueSELECTissue_number, owner, repoList the reactions to an issue.
list_for_issue_commentSELECTcomment_id, owner, repoList the reactions to an issue comment.
create_for_issueINSERTissue_number, owner, repo, data__contentCreate a reaction to an issue. A response with an HTTP 200 status means that you already added the reaction type to this issue.
create_for_issue_commentINSERTcomment_id, owner, repo, data__contentCreate a reaction to an issue comment. A response with an HTTP 200 status means that you already added the reaction type to this issue comment.
delete_for_issueDELETEissue_number, owner, reaction_id, repoNote: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.

Delete a reaction to an issue.
delete_for_issue_commentDELETEcomment_id, owner, reaction_id, repoNote: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.

Delete a reaction to an issue comment.