action dev_create_article { label: "Publish article" description: "This endpoint allows the client to create a new 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: POST path: "/api/articles" encoding: json input: { type: "object" description: "Representation of an Article to be created/updated" 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" } } } } } output: { type: "object" additionalProperties: true } }