PUT /api/events/update/{eventId}
curl \
 --request PUT 'http://api.example.com/api/events/update/{eventId}' \
 --header "Content-Type: application/json" \
 --data '{"name":"string","date":"2025-05-04T09:42:00Z","details":"string"}'
curl \
 --request PUT 'http://api.example.com/api/events/update/{eventId}' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://api.example.com/api/events/update/{eventId}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "name": "string",
  "date": "2025-05-04T09:42:00Z",
  "details": "string"
}