GET
/repos/{owner}/{repo}/issues/{issue_number}/reactionsList reactions for an issue
Lists the reactions attached to an issue in a repository. Use content to filter the results to one reaction type, or omit it to return all reactions, and use page and per_page to paginate the results.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
ownerstringrequired
The account owner of the repository; the name is not case sensitive.
repostringrequired
The repository name without the `.git` extension; the name is not case sensitive.
issue_numberintegerrequired
The integer that identifies the issue whose reactions to retrieve.
contentstringoptional
Filters results to one reaction type: `+1`, `-1`, `laugh`, `confused`, `heart`, `hooray`, `rocket`, or `eyes`. Omit this parameter to list all reactions.
per_pageintegeroptional
The number of results per page, up to 100. Defaults to 30 when omitted. Use `page` and `per_page` to paginate the results.
pageintegeroptional
The page number of results to retrieve. Defaults to 1 when omitted. Use `page` and `per_page` to paginate the results.
200Returns an array of reaction objects containing the reaction identifier, reacting user, reaction content, and creation timestamp.
idintegerrequired
node_idstringrequired
userobjectrequired
A GitHub user.
contentstringrequired
The reaction to use
created_atstringrequired
404Returned when the repository or issue cannot be found.
messagestringoptional
documentation_urlstringoptional
urlstringoptional
statusstringoptional
410Returned when the requested resource is no longer available.
messagestringoptional
documentation_urlstringoptional
urlstringoptional
statusstringoptional
Error handling
A 404 is returned when the repository or issue cannot be found. A 410 is returned when the requested resource is no longer available. content must be one of +1, -1, laugh, confused, heart, hooray, rocket, or eyes when provided.