Skip to content

List reactions on a review

GET
/reviews/{reviewId}/reactions

Returns the reacting users' display names, grouped by reaction kind (up/down), for the specified review.

Authorizations

tokenAuth

Personal access token authentication. Send via Authorization header: Authorization: Token vulcan_xxx. Tokens are SHA-256 hashed server-side (never stored in plaintext). Scopes: read (GET), write (mutations), admin (everything). Create tokens via Settings → API Tokens in the web UI.

Type
HTTP (token)

Responses

Reactions list

application/json
JSON
{
  
"up": [
  
  
{
  
  
  
"name": "Jane Doe"
  
  
}
  
],
  
"down": [
  
  
{
  
  
  
"name": "John Smith"
  
  
}
  
]
}

Playground

Server
Authorization

Samples

Powered by VitePress OpenAPI

Part of the MITRE Security Automation Framework (SAF)