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