[#1519] Edit Event - Internal Server Error

Migrated from Redmine #1519 | Author: Artem Kapustkin
Status: Feedback | Priority: Immediate, there is BUG! | Created: 2026-01-30


I’m trying to update the answers by calling PUT https://secure.simplymeet.me/panel/api/event/3608587, but receiving 500 Internal Server Error.

My Payload:
{
“id”: 3608587 // api says it’s optional, but still
“answers”: [{“id”: 3933121, “value”: “test value 1”}, {“id”: 3933124, “value”: “test value 2”}]
“invitee”: {“fullName”: “John Doe”} // the only that return validation error if not define the object
}

Please provide status of that endpoint, it’s critical for our integration.

Nicholas Alias wrote:

Here is an example of code, you can remove invitee or answers - we made it optional


PUT https://secure.simplymeet.me/panel/api/event/12587
Content-Type: application/json
X-AUTH-TOKEN: {{ token }}

{
  "invitee": {
    "fullName": "New client name"
  },
  "answers": [
    {
      "id": 6455,
      "value": "new-a1"
    },
    {
      "id": 6456,
      "value": "new-a23"
    },
    {
      "id": 6457,
      "value": false
    },
    {
      "id": 6458,
      "value": "Option2"
    },
    {
      "id": 6459,
      "value": "2026-03-17"
    }
  ]
}
###