action dev_update_article { label: "Update an article by id" description: "This endpoint allows the client to update an existing article.\n\n\"Articles\" are all the posts that users create on DEV that typically show up in the feed. They can be a blog post, a discussion question, a help thread etc. but is referred to as article within the code." provider: dev method: PUT path: "/api/articles/{id}" encoding: json input: { type: "object" properties: { article: { type: "object" properties: { body_markdown: { type: "string" } canonical_url: { type: "string" } description: { type: "string" } main_image: { type: "string" } organization_id: { type: "integer" } published: { type: "boolean" } series: { type: "string" } tags: { type: "string" } title: { type: "string" } } } id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }