Get Event by ID

GET/api/events/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area
curl -X GET "https://yoursite.com/api/events/123" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

{
  "id": "1",
  "title": "Team meeting",
  "start_date": "2024-01-15",
  "end_date": null,
  "type": "event"
}
MethodGET
Path/api/events/{id}
GroupEvents
Sincev1.0.0
Defined inRestApi/Controllers/EventsController.php