BizKitHub
DocsAPI ReferencePost/bff/post/bulk-publish-now
postPostAdmin BFF

/bff/post/bulk-publish-now

Sets visibility = public and, for posts that have not gone live yet (published_date is NULL or in the future), fast-forwards published_date to NOW(). Posts that were already live keep their editorial published_date. Single UPDATE on the DB; scoped to the caller organisation. Use this instead of /bulk-visibility when the intent is "make these scheduled/draft posts live right now" rather than "unhide something that was already public once".

PostpostBffPostBulk-publish-now

Parameters

JSON body

Request body

application/json
idsstring[]Required

External IDs of the posts to publish immediately. Silently skips ids that do not belong to the caller organisation.

Response schema

1 status code documented

200Success
success"true"Required
matchednumberRequired
requestednumberRequired

Response example

application/json
{
  "success": true,
  "matched": 0,
  "requested": 0
}

Request example

POST /bff/post/bulk-publish-now

post
curl -X POST "https://api.bizkithub.com/bff/post/bulk-publish-now" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "ids": [
    "string"
  ]
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key