Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.43 KB

File metadata and controls

37 lines (25 loc) · 1.43 KB

RecentItemsManager

List recently accessed items

Returns information about the recent items accessed by a user, either in the last 90 days or up to the last 1000 items accessed.

This operation is performed by calling function get_recent_items.

See the endpoint docs at API Reference.

client.recent_items.get_recent_items()

Arguments

  • fields Optional[List[str]]
    • A comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response. Be aware that specifying this parameter will have the effect that none of the standard fields are returned in the response unless explicitly specified, instead only fields for the mini representation are returned, additional to the fields requested.
  • limit Optional[int]
    • The maximum number of items to return per page.
  • marker Optional[str]
    • Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires usemarker to be set to true.
  • 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 RecentItems.

Returns a list recent items access by a user.