Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.05 KB

File metadata and controls

36 lines (23 loc) · 1.05 KB

SharedLinksAppItemsManager

Find app item for shared link

Returns the app item represented by a shared link.

The link can originate from the current enterprise or another.

This operation is performed by calling function find_app_item_for_shared_link.

See the endpoint docs at API Reference.

client.shared_links_app_items.find_app_item_for_shared_link(
    "".join(["shared_link=", app_item_shared_link])
)

Arguments

  • boxapi str
    • A header containing the shared link and optional password for the shared link. The format for this header is shared_link=[link]&shared_link_password=[password].
  • extra_headers Optional[Dict[str, Optional[str]]]
    • Extra headers that will be included in the HTTP request.

Returns

This function returns a value of type AppItem.

Returns a full app item resource if the shared link is valid and the user has access to it.