action figshare_private_article_category_delete { label: "Delete article category" description: "De-associate category from article" provider: figshare method: DELETE path: "/account/articles/{article_id}/categories/{category_id}" encoding: json input: { type: "object" properties: { article_id: { type: "integer" format: "int64" } category_id: { type: "integer" format: "int64" } } required: ["article_id", "category_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }