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