We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 669176c commit fc755aaCopy full SHA for fc755aa
1 file changed
var/client.http
@@ -0,0 +1,19 @@
1
+### GET Owners
2
+GET http://localhost:8000/api/platform/v1/owners
3
+
4
+### GET resources
5
+GET http://localhost:8000/api/platform/v1/resources
6
7
+### Create Owner
8
+POST http://localhost:8000/api/platform/v1/owners
9
+Content-Type: application/json
10
11
+{
12
+ "name": "MrMat"
13
+}
14
15
+> {%
16
+ const owner_uid = jsonPath(response.body, ".owner_uid")
17
+ %}
18
19
+###
0 commit comments