-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchannels-query.http
More file actions
53 lines (35 loc) · 870 Bytes
/
channels-query.http
File metadata and controls
53 lines (35 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file contains queries to check out the backend's responses.
#
# It's really just a helper for tinkering and getting the requests and
# responses right for when the documentation of the API leaves room for
# interpretation.
@host=data-api.psi.ch
@baseurl=https://{{host}}/all
###
# Query channel names for GLS typical channels
POST {{baseurl}}/channels
Content-Type: application/json
{
"regex":"WBGB.*EB80.*M01"
}
###
# Query channel configs for GLS typical channels
POST {{baseurl}}/channels/config
Content-Type: application/json
{
"regex":"WBGB.*EB80.*M01"
}
###
# Query channel names for SF typical channels
POST {{baseurl}}/channels
Content-Type: application/json
{
"regex":"SINEG.*CURRENT"
}
###
# Query channel configs for SF typical channels
POST {{baseurl}}/channels/config
Content-Type: application/json
{
"regex":"SINEG.*CURRENT"
}