POST
/platform/posts/{post}/comments
curl \
--request POST 'https://domain.tld/api/v2/platform/posts/{post}/comments' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"content":"comment with mention {'type':'tag-user', 'content':'@John Doe, 'id':'12'}","content_strip":"comment with mention @John Doe","tagged_everyone":true,"tagged_ambassadors":[42]}'
Request examples
{
"content": "comment with mention {'type':'tag-user', 'content':'@John Doe, 'id':'12'}",
"content_strip": "comment with mention @John Doe",
"tagged_everyone": true,
"tagged_ambassadors": [
42
]
}