---
title: "Create Comment"
method: POST
path: "/communities/spaces/posts/{post_id}/comments"
tags: ["Communities::Spaces::Post::Comment"]
---

# Create Comment

`POST /communities/spaces/posts/{post_id}/comments`

Create a comment on a post. Comments created via the API are auto-approved. The `contact_id` is optional and defaults to the connected user's own contact. Use `parent_comment_id` for threaded replies.

## Path parameters

- `post_id` integer, required

## Request body

- object
  - `communities_spaces_posts_comment` CommunitiesSpacesPostsCommentParameters — Communities::Spaces::Post::Comment
    - `body` string, required — Comment body as rich HTML
    - `contact_id` integer, nullable — ID of the Contact to author the comment. Optional — defaults to the connected user's own contact.
    - `parent_comment_id` integer, nullable — ID of the parent comment for threaded replies. Must be a comment on the same post.
    - `skip_notifications` boolean, nullable — When true, suppresses email/push notifications for this comment

## Response `201`

Created

- CommunitiesSpacesPostsCommentAttributes — Communities::Spaces::Post::Comment
  - `id` integer — Comment ID
  - `public_id` string, nullable — Comment public ID
  - `contact_id` integer, nullable — ID of the Contact who authored the comment
  - `body` string, nullable — Comment body as plain text
  - `url` string, nullable — Canonical URL of the comment
  - `contact` object, nullable — Short representation of the authoring Contact, or null if the contact has been deleted
    - `id` integer — Contact ID
    - `public_id` string — Contact public ID
    - `email_address` string, nullable — Contact email address
    - `first_name` string, nullable — Contact first name
    - `last_name` string, nullable — Contact last name
    - `phone_number` string, nullable — Contact phone number
  - `group` object — The Space Group the parent post belongs to
    - `id` integer — Space Group ID
    - `public_id` string, nullable — Space Group public ID
    - `name` string, nullable — Space Group name
  - `post` object — The Post this comment belongs to
    - `id` integer — Post ID
    - `public_id` string, nullable — Post public ID
    - `title` string, nullable — Post title
    - `url` string, nullable — Post canonical URL
  - `created_at` string, date-time, nullable — Created at
  - `updated_at` string, date-time, nullable — Updated at

## Other responses

- `401` — Unauthorized
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
