Returns the app item represented by a shared link.
The link can originate from the current enterprise or another.
shared_link=[example.com]&shared_link_password=[xyz123]
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]
Returns a full app item resource if the shared link is valid and the user has access to it.
An unexpected client error.
await client.sharedLinksAppItems.findAppItemForSharedLink({
boxapi: ''.concat('shared_link=', appItemSharedLink) as string,
} satisfies FindAppItemForSharedLinkHeadersInput);
client.shared_links_app_items.find_app_item_for_shared_link(
"".join(["shared_link=", app_item_shared_link])
)
await client.SharedLinksAppItems.FindAppItemForSharedLinkAsync(headers: new FindAppItemForSharedLinkHeaders(boxapi: string.Concat("shared_link=", appItemSharedLink)));
try await client.sharedLinksAppItems.findAppItemForSharedLink(headers: FindAppItemForSharedLinkHeaders(boxapi: "\("shared_link=")\(appItemSharedLink)"))
client.getSharedLinksAppItems().findAppItemForSharedLink(new FindAppItemForSharedLinkHeaders(String.join("", "shared_link=", appItemSharedLink)))
{
"id": "12345678",
"type": "app_item",
"application_type": "hubs"
}