action box_get_shared_items_web_links { label: "Find web link for shared link" description: "Returns the web link represented by a shared link.\n\nA shared web link 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 web link when only given a shared link." provider: box method: GET path: "/shared_items#web_links" 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: "Web links are objects that point to URLs. These objects\nare also known as bookmarks within the Box web application.\n\nWeb link objects are treated similarly to file objects,\nthey will also support most actions that apply to regular files." } }