action figshare_private_collection_author_delete { label: "Delete collection author" description: "Delete collection author" provider: figshare method: DELETE path: "/account/collections/{collection_id}/authors/{author_id}" encoding: json input: { type: "object" properties: { author_id: { type: "integer" format: "int64" } collection_id: { type: "integer" format: "int64" } } required: ["author_id", "collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }