Parameters
JSON body
Request body
application/jsonidstringRequiredNewsletter job ID.
subjectstringRequiredNew email subject. Stored normalised (single-line, max 300 chars).
contentstringRequiredNew email body. Stored verbatim as HTML.
Updates the subject and body of the post backing a newsletter job. The runner reloads the post each cron tick, so the new content reaches every contact not yet delivered.
JSON body
idstringRequiredNewsletter job ID.
subjectstringRequiredNew email subject. Stored normalised (single-line, max 300 chars).
contentstringRequiredNew email body. Stored verbatim as HTML.
1 status code documented
successbooleanRequiredtrue{
"success": true
}POST /bff/newsletter/job-update-content
curl -X POST "https://api.bizkithub.com/bff/newsletter/job-update-content" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "example_id",
"subject": "example_subject",
"content": "example_content"
}'All BizKitHub public API endpoints require authentication via API key.