list_for_issue | SELECT | issue_number, owner, repo | List the reactions to an issue. |
list_for_issue_comment | SELECT | comment_id, owner, repo | List the reactions to an issue comment. |
create_for_issue | INSERT | issue_number, owner, repo, data__content | Create 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_comment | INSERT | comment_id, owner, repo, data__content | Create 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_issue | DELETE | issue_number, owner, reaction_id, repo | Note: 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_comment | DELETE | comment_id, owner, reaction_id, repo | Note: 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. |