action figshare_private_collection_publish { label: "Private Collection Publish" description: "When a collection is published, a new public version will be generated. Any further updates to the collection will affect the private collection data. In order to make these changes publicly visible, an explicit publish operation is needed." provider: figshare method: POST path: "/account/collections/{collection_id}/publish" encoding: json input: { type: "object" properties: { collection_id: { type: "integer" format: "int64" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" required: ["location"] properties: { location: { type: "string" format: "url" description: "Url for item" } } } }