2025-03-25 13:26:36 +01:00

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}"