27 lines
564 B
YAML
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"
|