Files
tp/smoker.http
2025-11-04 06:39:35 +01:00

33 lines
567 B
HTTP

POST https://smocker_admin.localhost/mocks
Content-Type: application/x-yaml
- request:
method: GET
path: /hello/world
response:
status: 200
headers:
Content-Type: application/json
body: >
{
"message": "Hello, World!"
}
- request:
method: POST
path: /hello/world
response:
status: 500
headers:
Content-Type: application/json
body: >
{
"message": "error"
}
### Test GET
GET https://smocker.localhost/hello/world
### Test POST
POST https://smocker.localhost/hello/world