hn-20-2/Apps/Api/api.http

26 lines
369 B
HTTP

@url = http://localhost:5000
GET {{url}}/api/links
###
POST {{url}}/api/links
Content-Type: application/json
{
"url": "http://google.com"
}
###
GET {{url}}/api/links/0860619e-6a13-45fe-86a8-6aa64e263f38/comments
###
POST {{url}}/api/comments
Content-Type: application/json
{
"linkId": "55be28a5-fdfb-48f7-8442-5f900048c292",
"content": "a new comment!"
}