Skip to main content

Get All Reactions

GET /api/reaction/​

Retrieve all available reactions.

Response​

  • 200 OK
    { "success": true, "data": [ /* array of reactions */ ] }
  • 500 Internal Server Error
    { "success": false, "error": "Internal Server Error" }

Reaction object​

{
"id": 1,
"service_id": 1,
"name": "Reaction Name",
"description": "Reaction description",
"config": {}
}

Example​

curl -X GET http://localhost:8080/api/reaction/ \
--cookie "token=your_jwt_token"