Add bruno files

This commit is contained in:
2025-10-06 10:42:47 +03:00
parent 0c179993d9
commit dda20e3fe9
86 changed files with 1353 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
meta {
name: Create 'delete-me' tag
type: http
seq: 3
}
post {
url: {{baseUrl}}/api/tags
body: json
auth: inherit
}
body:json {
{
"type": "General",
"name": "delete-me"
}
}

View File

@@ -0,0 +1,18 @@
meta {
name: Create 'high-res' tag
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/tags
body: json
auth: inherit
}
body:json {
{
"type": "General",
"name": "high-res"
}
}

View File

@@ -0,0 +1,18 @@
meta {
name: Create 'theotown' tag
type: http
seq: 2
}
post {
url: {{baseUrl}}/api/tags
body: json
auth: inherit
}
body:json {
{
"type": "General",
"name": "theotown"
}
}

View File

@@ -0,0 +1,15 @@
meta {
name: Delete a tag
type: http
seq: 7
}
delete {
url: {{baseUrl}}/api/tags/:name
body: none
auth: inherit
}
params:path {
name: delete-me
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get a tag
type: http
seq: 5
}
get {
url: {{baseUrl}}/api/tags/:name
body: none
auth: inherit
}
params:path {
name: high-res
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get all tags
type: http
seq: 4
}
get {
url: {{baseUrl}}/api/tags
body: none
auth: inherit
}
params:query {
~pageNumber:
}

View File

@@ -0,0 +1,21 @@
meta {
name: Update a tag
type: http
seq: 6
}
patch {
url: {{baseUrl}}/api/tags/:name
body: json
auth: inherit
}
params:path {
name: theotown
}
body:json {
{
"type": "General"
}
}

View File

@@ -0,0 +1,8 @@
meta {
name: Tag operations
seq: 2
}
auth {
mode: inherit
}