Files
T120B165/Bruno/Endpoints/Posts/Comments/Create a post comment.bru
2025-10-06 10:42:47 +03:00

22 lines
281 B
Plaintext

meta {
name: Create a post comment
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/posts/1/comments
body: json
auth: bearer
}
auth:bearer {
token: {{accessToken}}
}
body:json {
{
"text": "Where'd you find this? Ignore that this is the same author btw"
}
}