Github API

Getting access, Developing, Testing

Back to Github

Delete a commit comment reaction

Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.

Delete a reaction to a commit comment.

Input

type: object properties: parameters: type: object properties: owner: type: string description: The account owner of the repository. The name is not case sensitive. repo: type: string description: The name of the repository. The name is not case sensitive. comment_id: type: integer description: The unique identifier of the comment. reaction_id: type: integer description: The unique identifier of the reaction. required: - owner - repo - comment_id - reaction_id title: Parameters