Waiting for engine...
Skip to main content

recentlySharedBundles

Returns a paginated list of recently shared bundles for the authenticated user making this request. This will include bundles that were shared with the logged-in user's account, ordered by the most recently shared date.

An example of the request is as follows:

query {
recentlySharedBundles(input: { offset: 0, limit: 10 }) {
recentlySharedBundles {
bundleId
bundleName
bundleDescription
sharedWithAccountIds
sharingMode
assetTypes
sharedOn
}
totalCount
}
}

The offset parameter (optional) specifies the zero-based page index. Must not be negative. The limit parameter (optional) specifies the maximum number of bundles to return per page. Must be greater than 0.

recentlySharedBundles(
input: RecentlySharedBundlesInput
): RecentlySharedBundlesResponse!

Arguments

recentlySharedBundles.input ● RecentlySharedBundlesInput input bundles

Type

RecentlySharedBundlesResponse object bundles

Paginated response containing recently shared bundles and the total number of matching records.

On this Page