Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
AgentsCopywriter

Content Editor

Edits and refines existing content drafts based on specific style controls and user preferences.

POST /api/agents/copywriter/content-editor

Request Body

{ "contentId": "123e4567-e89b-12d3-a456-426614174000", "siteId": "123e4567-e89b-12d3-a456-426614174000", "userId": "123e4567-e89b-12d3-a456-426614174000", "quickAction": "improve", "styleControls": { "tone": "professional", "creativity": "balanced" } }
ParameterTypeRequiredDescription
contentIdstringYesThe UUID of the content to edit.
siteIdstringYesThe UUID of the site.
userIdstringYesThe UUID of the user requesting the edit.
agent_idstringNoThe UUID of the specific agent.
quickActionstringNoPredefined action (e.g., “improve”, “shorten”, “expand”).
styleControlsobjectNoObject defining style parameters (tone, complexity, etc.).
aiPromptstringNoCustom instructions for the AI.

Response

Returns the edited content (title, description, text) and updates it in the database.

Last updated on