21 lines
366 B
YAML
21 lines
366 B
YAML
- method: "GET"
|
|
path: "/"
|
|
response:
|
|
status: 200
|
|
headers:
|
|
Content-Type: "application/json"
|
|
body:
|
|
name: "api test endpoint 1"
|
|
|
|
- method: "GET"
|
|
path: "/{id}"
|
|
response:
|
|
status: 200
|
|
headers:
|
|
Content-Type: "application/json"
|
|
body:
|
|
id: "{id}"
|
|
name: "Example User"
|
|
globalUserId: "{globals.currentUserId}"
|
|
|