Creation table tasks

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-09 16:17:10 +01:00
parent 8341021ba5
commit f353e0c964
7 changed files with 155 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
meta {
name: create event task
type: http
seq: 1
}
post {
url: {{url}}/api/events/task
body: json
auth: inherit
}
headers {
X-XSRF-TOKEN:
}
body:json {
{
"event_id": 1,
"name": "test",
"location": "location test",
"description": "desc test",
"start": "2025-11-09 15:30:00",
"end": "2025-11-09 15:30:00",
"max_participants": 10
}
}
settings {
encodeUrl: true
timeout: 0
}
+8
View File
@@ -0,0 +1,8 @@
meta {
name: tasks
seq: 2
}
auth {
mode: inherit
}