Finally playing nice together

This commit is contained in:
2021-03-07 15:34:35 +11:00
parent 1f4eae697d
commit 7de1083fdd
3 changed files with 35 additions and 11 deletions
+33
View File
@@ -0,0 +1,33 @@
#Query
GET https://dev-news.eggtrainer.com/news HTTP/1.1
###
#Publish
POST https://dev-news.eggtrainer.com/news HTTP/1.1
Content-Type: application/json
Authorization: Bearer
{
"title": "Hello World",
"author": "Kayne Ruse",
"body": "Lorem ipsum."
}
###
#Edit
PATCH https://dev-news.eggtrainer.com/news/1 HTTP/1.1
Content-Type: application/json
Authorization: Bearer
{
"title": "Goodnight World"
}
###
#Delete
DELETE https://dev-news.eggtrainer.com/news/1 HTTP/1.1
Content-Type: application/json
Authorization: Bearer