action figshare_private_article_private_link { label: "List private links" description: "List private links" provider: figshare method: GET path: "/account/articles/{article_id}/private_links" encoding: json output: { type: "array" items: { type: "object" required: ["id", "is_active", "expires_date", "html_location"] properties: { expires_date: { type: "string" description: "Date when link will expire" } html_location: { type: "string" format: "url" description: "HTML url for private link" } id: { type: "string" description: "Private link id" } is_active: { type: "boolean" description: "True if private link is active" } } } } }