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

15
One & All/items/Agcd.bru Normal file
View File

@@ -0,0 +1,15 @@
meta {
name: Agcd
type: http
seq: 3
}
get {
url: {{baseUrl}}/api/v1/items/items/:item_id
body: none
auth: none
}
params:path {
item_id:
}

View File

@@ -0,0 +1,18 @@
meta {
name: Create Item
type: http
seq: 2
}
post {
url: {{baseUrl}}/api/v1/items/
body: json
auth: none
}
body:json {
{
"title": "",
"description": ""
}
}

View File

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

View File

@@ -0,0 +1,15 @@
meta {
name: Read Item
type: http
seq: 4
}
get {
url: {{baseUrl}}/api/v1/items/:id
body: none
auth: none
}
params:path {
id:
}

View File

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

View File

@@ -0,0 +1,22 @@
meta {
name: Update Item
type: http
seq: 5
}
put {
url: {{baseUrl}}/api/v1/items/:id
body: json
auth: none
}
params:path {
id:
}
body:json {
{
"title": "",
"description": ""
}
}