Parameters
JSON body
Request body
application/jsonpostIdstringRequiredPost external ID.
Example
aBcDeFgH12345678localestringRequiredLocale to delete.
Example
deRemoves the content__post_locale row plus every per-locale history entry and canonical route in a single transaction. Refuses on the organisation primary locale — every post must retain its source translation.
JSON body
postIdstringRequiredPost external ID.
aBcDeFgH12345678localestringRequiredLocale to delete.
de1 status code documented
successbooleanRequiredlocalestringRequireddeletedHistoryRowsnumberRequiredNumber of content__post_history rows removed.
deletedRoutesnumberRequiredNumber of canonical core__route rows removed.
{
"success": false,
"locale": "example_locale",
"deletedHistoryRows": 0,
"deletedRoutes": 0
}POST /bff/post/locale-delete
curl -X POST "https://api.bizkithub.com/bff/post/locale-delete" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"postId": "aBcDeFgH12345678",
"locale": "de"
}'All BizKitHub public API endpoints require authentication via API key.