delete_item
Remove articles from Qiita platform by providing the article ID. Delete specific posts to manage content on the Japanese developer community.
Instructions
指定された記事を削除します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | 記事ID |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "記事ID",
"type": "string"
}
},
"required": [
"itemId"
],
"type": "object"
}