add update event route

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-21 16:08:04 +01:00
parent d5f1c7f163
commit d6a8fd3010
3 changed files with 54 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
meta {
name: Update event
type: http
seq: 4
}
post {
url: {{url}}/api/events/{{id}}/update
body: json
auth: inherit
}
body:json {
{
"name": "{{name}}",
"description": "{{description}}"
}
}
vars:pre-request {
id: 1
name: BLAAHHHH
description: DADADADADDA
}
settings {
encodeUrl: true
timeout: 0
}