action box_get_shared_items { label: "Find file for shared link" description: "Returns the file represented by a shared link.\n\nA shared file can be represented by a shared link,\nwhich can originate within the current enterprise or within another.\n\nThis endpoint allows an application to retrieve information about a\nshared file when only given a shared link.\n\nThe `shared_link_permission_options` array field can be returned\nby requesting it in the `fields` query parameter." provider: box method: GET path: "/shared_items" encoding: json input: { type: "object" properties: { boxapi: { type: "string" } fields: { type: "array" items: { type: "string" } } "if-none-match": { type: "string" } } required: ["boxapi"] additionalProperties: false } output: { type: "object" description: "A standard representation of a file, as returned from any\nfile API endpoints by default" required: ["created_at", "description", "item_status", "modified_at", "modified_by", "owned_by", "path_collection", "size"] } }