apimposter/mocks/test/users.yaml
2025-03-25 13:26:36 +01:00

27 lines
564 B
YAML

- method: "GET"
path: "/{id}"
conditionalResponses:
- conditions:
path:
id: "1"
response:
status: 200
headers: { Content-Type: "application/json" }
body:
id: 1
name: "Lennart"
- conditions:
path:
id: "2"
response:
status: 200
headers: { Content-Type: "application/json" }
body:
id: 2
name: "Kurre"
response:
status: 404
headers: { Content-Type: "application/json" }
body:
error: "User not found"