action figshare_private_collection_reserve_handle { label: "Private Collection Reserve Handle" description: "Reserve Handle for collection" provider: figshare method: POST path: "/account/collections/{collection_id}/reserve_handle" encoding: json input: { type: "object" properties: { collection_id: { type: "integer" format: "int64" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" required: ["handle"] properties: { handle: { type: "string" description: "Reserved Handle" } } } }