Communities::Spaces::Post
Approve Post
Approve a post. Sets approved_at to the current time, applies any pending draft edit to the live body, and notifies any contacts mentioned in the post body.
post/communities/spaces/posts/{id}/approve
Path parameters
idstring required
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"
}