action figshare_private_article_author_delete { label: "Delete article author" description: "De-associate author from article" provider: figshare method: DELETE path: "/account/articles/{article_id}/authors/{author_id}" encoding: json input: { type: "object" properties: { article_id: { type: "integer" format: "int64" } author_id: { type: "integer" format: "int64" } } required: ["article_id", "author_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }