Migrated from Redmine #1290 | Author: David C
Status: Feedback | Priority: High, I’m very impatient | Created: 2024-10-08
I want to know if it is possible to edit an event location (link to meeting)
I am unable to update the event location
curl --location --request PUT 'https://secure.simplymeet.me/panel/api/event/e78e5777-3b0d-453e-9a46-f829f75451b8' \ --header 'X-API-KEY: ' \ --header 'Content-Type: application/json' \ --data '{ "location": "https://example.com" }' An Error Occurred: Method Not Allowed body { background-color: #fff; color: #222; font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; } .container { margin: 30px; max-width: 600px; } h1 { color: #dc3545; font-size: 24px; } h2 { font-size: 18px; }Oops! An Error Occurred
The server returned a "405 Method Not Allowed".
<p> Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused. </p> </div>
First, I was trying out the example on the API docs:
curl -X POST https://secure.simplymeet.me/panel/api/event/cancel/e78e5777-3b0d-453e-9a46-f829f75451b8 \
-H "Content-Type: application/json" \
-H "X-API-KEY: " \
-d '{
"reason": "test"
}'
RESPONSE
An Error Occurred: Method Not Allowed
body { background-color: #fff; color: #222; font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; }
.container { margin: 30px; max-width: 600px; }
h1 { color: #dc3545; font-size: 24px; }
h2 { font-size: 18px; }
</head>
<body>
<div class="container">
<h1>Oops! An Error Occurred</h1>
<h2>The server returned a "405 Method Not Allowed".</h2>
<p>
Something is broken. Please let us know what you were doing when this error occurred.
We will fix it as soon as possible. Sorry for any inconvenience caused.
</p>
</div>
</body>
Then I was trying to edit the event notes:
curl --location --request PUT 'https://secure.simplymeet.me/panel/api/event/notes/e78e5777-3b0d-453e-9a46-f829f75451b8' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: ' \
--data '{
"notes": "test"
}'
RESPONSE:
An Error Occurred: Internal Server Error
body { background-color: #fff; color: #222; font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; }
.container { margin: 30px; max-width: 600px; }
h1 { color: #dc3545; font-size: 24px; }
h2 { font-size: 18px; }
</head>
<body>
<div class="container">
<h1>Oops! An Error Occurred</h1>
<h2>The server returned a "500 Internal Server Error".</h2>
<p>
Something is broken. Please let us know what you were doing when this error occurred.
We will fix it as soon as possible. Sorry for any inconvenience caused.
</p>
</div>
</body>
PS: I removed my api key and replaced it with the text