add update event task route

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-21 16:16:34 +01:00
parent d6a8fd3010
commit 9e271f8a3e
3 changed files with 64 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
meta {
name: Update Task
type: http
seq: 5
}
post {
url: {{url}}/api/events/tasks/{{id}}/update
body: json
auth: inherit
}
body:json {
{
"name": "{{name}}",
"description": "{{description}}",
"location": "{{location}}",
"start": "{{start}}",
"end": "{{end}}",
"max_participants": "{{max_participants}}"
}
}
vars:pre-request {
id:
name:
description:
location:
start:
end:
max_participants:
}
settings {
encodeUrl: true
timeout: 0
}