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