doc: started Bruno collection for requests

episode-actions
Jef Roosens 2025-02-24 18:34:40 +01:00
parent 7db6ebf213
commit 2f0fe08f4c
No known key found for this signature in database
GPG Key ID: 21FD3D77D56BAF49
6 changed files with 90 additions and 0 deletions

11
bruno/Login.bru 100644
View File

@ -0,0 +1,11 @@
meta {
name: Login
type: http
seq: 1
}
post {
url: http://localhost:8080/api/2/auth/test/login.json
body: none
auth: inherit
}

View File

@ -0,0 +1,16 @@
meta {
name: Get Subscriptions for device
type: http
seq: 2
}
get {
url: http://localhost:8080/subscriptions/:user/:device_id
body: none
auth: inherit
}
params:path {
user: test
device_id: device_one.json
}

View File

@ -0,0 +1,15 @@
meta {
name: Get subscriptions for user
type: http
seq: 3
}
get {
url: http://localhost:8080/subscriptions/:user
body: none
auth: inherit
}
params:path {
user: test.json
}

View File

@ -0,0 +1,25 @@
meta {
name: Upload subscriptions for device
type: http
seq: 1
}
put {
url: http://localhost:8080/subscriptions/:user/:device_id
body: json
auth: basic
}
params:path {
device_id: device_one.json
user: test
}
auth:basic {
username: test
password: test
}
body:json {
["https://example1.com", "https://example2.com"]
}

15
bruno/bruno.json 100644
View File

@ -0,0 +1,15 @@
{
"version": "1",
"name": "Otter",
"type": "collection",
"ignore": [
"node_modules",
".git"
],
"size": 0,
"filesCount": 0,
"presets": {
"requestType": "http",
"requestUrl": "http://localhost:8080"
}
}

View File

@ -0,0 +1,8 @@
auth {
mode: basic
}
auth:basic {
username: test
password: test
}