update_article
Modify existing Dev.to articles by updating titles, markdown content, tags, or publish status using the article ID for targeted changes.
Instructions
Update an existing article on Dev.to
Args:
article_id: The ID of the article to update
title: New title for the article (optional)
body_markdown: New content in markdown format (optional)
tags: New comma-separated list of tags (optional)
published: Change publish status (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_id | Yes | ||
body_markdown | No | ||
published | No | ||
tags | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"title": "Article Id",
"type": "integer"
},
"body_markdown": {
"default": null,
"title": "Body Markdown",
"type": "string"
},
"published": {
"default": null,
"title": "Published",
"type": "boolean"
},
"tags": {
"default": null,
"title": "Tags",
"type": "string"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"article_id"
],
"title": "update_articleArguments",
"type": "object"
}