Create assign task route

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-14 09:47:13 +01:00
parent 71fc82a0e7
commit 55f332d28e
3 changed files with 52 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
meta {
name: Assign task
type: http
seq: 2
}
post {
url: {{url}}/api/events/task/assign
body: json
auth: inherit
}
headers {
X-XSRF-TOKEN:
}
body:json {
{
"task_id": "{{taskId}}"
}
}
vars:pre-request {
taskId: 1
}
settings {
encodeUrl: true
timeout: 0
}