Update an Event

PUT/api/events/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
id Number Event unique ID
title string optional Optional Title to update
description string optional Optional Description to update
start_date string optional Optional Start date to update
end_date string optional Optional End date to update
location string optional Optional Location to update
curl -X PUT "https://yoursite.com/api/events/123" \
  -H "authtoken: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "field": "value" }'

Success-Response:

HTTP/1.1 200 OK
{
  "status": 200,
  "messages": {"success": "Event update success"}
}
MethodPUT
Path/api/events/{id}
GroupEvents
Sincev1.0.0
Defined inRestApi/Controllers/EventsController.php