updated the course index part

This commit is contained in:
2025-01-22 18:22:04 +08:00
parent b84d9bda94
commit 7644ba35c1
68 changed files with 33316 additions and 27 deletions

View File

@@ -0,0 +1,20 @@
meta {
name: Create Message
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/v1/messages/
body: json
auth: none
}
body:json {
{
"name": "",
"phone": "",
"email": "",
"message": ""
}
}

View File

@@ -0,0 +1,15 @@
meta {
name: Delete Item
type: http
seq: 3
}
delete {
url: {{baseUrl}}/api/v1/messages/:id
body: none
auth: none
}
params:path {
id:
}

View File

@@ -0,0 +1,16 @@
meta {
name: Read Messages
type: http
seq: 2
}
get {
url: {{baseUrl}}/api/v1/messages/
body: none
auth: none
}
params:query {
~skip:
~limit:
}