added
New `import_doc_from_html` mutation
September 15th, 2025
🏷️ API version:
2025-10
You can now use the import_doc_from_html
mutation to convert HTML content to a new monday doc. The content is then parsed and converted to the corresponding document block type.
mutation {
import_doc_from_html(
html: """
<!DOCTYPE html>
<html>
<head>
<title>Test Doc</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is a <strong>fake HTML</strong> doc for testing.</p>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</body>
</html>
""",
workspaceId: 1234567890,
title: "New Doc from HTML",
folderId: 9876543210
) {
error
success
doc_id
}
}