POST
/posts/{postId}/comments
curl \
--request POST 'http://localhost:8080/posts/{postId}/comments' \
--header "Content-Type: application/json" \
--data '{"text":"string"}'
Request examples
{
"text": "string"
}
Response examples (200)
{
"text": "string"
}