summaryrefslogtreecommitdiff
path: root/requests.http
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-05 16:17:45 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-05 16:17:45 -0600
commit98bd42c790948089eca96c71021b4fbd4641a7e4 (patch)
tree82a0c1ac2f0bca911ce0960afe4f1234bd810f8f /requests.http
parentc96e88537de14bc17988d33cc25b77a52d7af6b4 (diff)
Add reply creation
Diffstat (limited to 'requests.http')
-rw-r--r--requests.http8
1 files changed, 8 insertions, 0 deletions
diff --git a/requests.http b/requests.http
index c791503..6f76bbb 100644
--- a/requests.http
+++ b/requests.http
@@ -5,3 +5,11 @@ Content-Type: application/json
"content": "This is a comment. Hey man, sorry but this is\\na bad not word ok? No hard feelings.",
"domain": "localhost:5000"
}
+
+POST http://localhost:5000/comments/1/replies
+Content-Type: application/json
+{
+ "email": "awesome@example.org",
+ "content": "This is a reply to a comment",
+ "author": "Your secret fan"
+}