Communities::Spaces::Post
Update Post
Update a post. The contact_id field is ignored on update.
put/communities/spaces/posts/{id}
Path parameters
idstring required
Request body
Example request
{
"communities_spaces_post": {
"communities_spaces_post": {
"title": "Updated post title",
"is_pinned": true
}
}
}Response
OK
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"
}