Create Topic Reply
topic_create_replyPost a reply to a discussion topic. Optionally nest the reply under an existing reply by providing its ID.
Instructions
Create a reply to a discussion topic. Pass reply_to_id to nest under another reply; omit for a top-level reply.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic_id | Yes | Topic ID to reply to. | |
| body | Yes | Reply body (plain text only). | |
| reply_to_id | No | Optional parent reply ID for nested replies. Get IDs from `topic_replies`. Omit for a top-level reply. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Reply ID. | |
| topic_id | Yes | Topic ID this reply belongs to. | |
| body | Yes | Reply body (plain text). | |
| reply_to_id | Yes | Parent reply ID (`"0"` means top-level). | |
| author | Yes | Reply author. | |
| images | Yes | Attached images. | |
| likes_count | Yes | Likes count. | |
| comments_count | Yes | Nested replies count. | |
| created_at | Yes | Created time (RFC3339). |