action box_get_shared_items_folders { label: "Find folder for shared link" description: "Return the folder represented by a shared link.\n\nA shared folder 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 folder when only given a shared link." provider: box method: GET path: "/shared_items#folders" 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 folder, as returned from any\nfolder API endpoints by default" required: ["created_by", "item_collection", "item_status", "modified_by", "owned_by", "path_collection", "size"] } }