Create unassignUser, unassignSelf methods and Bruno requests. Add call events when needed

This commit is contained in:
2026-01-11 19:03:58 +01:00
parent 234717b23c
commit ab1df4d692
6 changed files with 181 additions and 10 deletions
@@ -0,0 +1,27 @@
meta {
name: Unassign task to user
type: http
seq: 7
}
post {
url: {{url}}/api/events/task/unassign/{{id}}
body: json
auth: inherit
}
body:json {
{
"task_id": "{{task_id}}"
}
}
vars:pre-request {
id:
task_id:
}
settings {
encodeUrl: true
timeout: 0
}
+26
View File
@@ -0,0 +1,26 @@
meta {
name: Unassign task
type: http
seq: 6
}
post {
url: {{url}}/api/events/task/unassign
body: json
auth: inherit
}
body:json {
{
"task_id": "{{taskId}}"
}
}
vars:pre-request {
taskId:
}
settings {
encodeUrl: true
timeout: 0
}