add update event task route
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user