Skip to main content
DELETE
/
api
/
v0
/
repositories
/
{repo_id}
/
comments
/
files
/
{comment_id}
/
react
Delete a reaction from a comment on a file in a repository.
curl --request DELETE \
  --url https://api.example.com/api/v0/repositories/{repo_id}/comments/files/{comment_id}/react \
  --header 'Content-Type: application/json' \
  --data '
{
  "reaction": "<string>"
}
'
[
  {
    "reaction": "<string>",
    "users": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cantina.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

repo_id
string<uuid>
required
comment_id
string<uuid>
required

Body

application/json

Delete a reaction to a comment.

reaction
string
required

Reaction, e.g. a unicode emoji such as 😄.

Response

Reaction deleted, returns the current list of reactions

reaction
string
required

Reaction, e.g. a unicode emoji such as 👍.

users
object[]
required

Users that reacted with this reaction.