action figshare_private_collection_articles_add { label: "Add collection articles" description: "Associate new articles with the collection. This will add new articles to the list of already associated articles" provider: figshare method: POST path: "/account/collections/{collection_id}/articles" encoding: json input: { type: "object" required: ["articles"] properties: { articles: { type: "array" description: "List of article ids" items: { type: "integer" format: "int64" description: "Id of article" } } } } output: { type: "object" required: ["location"] properties: { location: { type: "string" format: "url" description: "Url for item" } } } }