Communities::Spaces::Post
Create Post
Create a post in a space. Posts created via the API are auto-approved. The contact_id is optional and defaults to the connected user's own contact.
post/communities/spaces/{space_id}/posts
Path parameters
space_idinteger required
Request body
Example request
{
"communities_spaces_post": {
"communities_spaces_post": {
"title": "Welcome to the community!",
"body": "<p>Hi everyone, excited to be here.</p>"
}
}
}Response
Created
Example response
{
"id": 101,
"public_id": "AbCdEf",
"contact_id": 55,
"title": "Welcome to the community!",
"body": "Hi everyone, excited to be here.",
"url": "https://example.myclickfunnels.com/communities/posts/AbCdEf",
"contact": {
"id": 55,
"public_id": "GhIjKl",
"email_address": "jane@example.com",
"first_name": "Jane",
"last_name": "Doe",
"phone_number": null
},
"group": {
"id": 1,
"public_id": "BcDeFg",
"name": "General"
},
"topic": {
"id": 2,
"public_id": "CdEfGh",
"name": "Introductions"
},
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z"
}