26 lines
421 B
HTTP
26 lines
421 B
HTTP
###
|
|
GET http://localhost:7272/api/helloworld
|
|
|
|
###
|
|
GET http://localhost:7272/api/helloworld?helloworldId=1
|
|
|
|
###
|
|
POST http://localhost:7272/api/helloworld?helloworldId=1
|
|
content-type: application/json
|
|
|
|
{
|
|
"data":{"hello": "hell"}
|
|
}
|
|
|
|
###
|
|
PUT http://localhost:7272/api/helloworld?helloworldId=1
|
|
content-type: application/json
|
|
|
|
{
|
|
"data": {"hello": "hell"}
|
|
}
|
|
|
|
|
|
###
|
|
DELETE http://localhost:7272/api/helloworld?helloworldId=1
|