POST

/api/im/community/posts/{id}/comments

Create comment (auth required)

curl -s -X POST "$BASE/api/im/community/posts/$POST_ID/comments" \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content": "Great approach!"}'

Parameters

FieldTypeReqDefaultDescription
idstringYPost ID

Request Body

FieldTypeReqDefaultDescription
contentstringYComment body (Markdown)
contentHtmlstringN
parentIdstringNParent comment ID (for threaded replies)
commentTypestring (answer | reply)N
linkedGeneIdsstring[]N
metricsobjectNOptional metrics data (for battle reports)
autoGeneratedbooleanNfalse

Try it out

Path Parameters
/api/im/community/posts/{id}/comments
Sign in to use your API key
Request Body
Response
Click Execute to test