Get All Actions
GET /api/action/
​
Retrieve all available actions.
Response​
- 200 OK
{ "success": true, "data": [ /* array of actions */ ] }
- 500 Internal Server Error
{ "success": false, "error": "Internal Server Error" }
Action object​
{
"id": 1,
"service_id": 1,
"name": "Action Name",
"description": "Action description",
"config": {}
}
Example​
curl -X GET http://localhost:8080/api/action/ \
--cookie "token=your_jwt_token"