This commit is contained in:
Sivert V. Sæther
2025-02-13 15:13:14 +01:00
commit 1893b81204
15 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
meta {
name: Global Application
type: http
seq: 5
}
put {
url: {{host}}/stoplists/{{stoplistId}}/global
body: json
auth: inherit
}
body:json {
[
"PersonAddress", "Phone"
]
}

View File

@@ -0,0 +1,11 @@
meta {
name: Globals
type: http
seq: 3
}
get {
url: {{host}}/stoplists/global
body: none
auth: inherit
}

View File

@@ -0,0 +1,15 @@
meta {
name: SetGlobal
type: http
seq: 4
}
put {
url: {{host}}/stoplists/{{stoplistId}}/global/{{isGlobal}}
body: none
auth: inherit
}
vars:pre-request {
isGlobal: true
}

View File

@@ -0,0 +1,11 @@
meta {
name: Stoplist
type: http
seq: 2
}
get {
url: {{host}}/stoplists/{{stoplistId}}
body: none
auth: inherit
}

View File

@@ -0,0 +1,11 @@
meta {
name: Stoplists
type: http
seq: 1
}
get {
url: {{host}}/stoplists
body: none
auth: inherit
}