Inbox Uploads

An InboxUpload is a log record about upload operations that happened in your Inbox.

List Inbox Uploads

SDK Method

files_sdk.inbox_upload.list()

Return Object

ListObj[InboxUpload]

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Folder Admin permissions.

Additional Arguments

Example Request

import files_sdk

try:
  inbox_uploads = files_sdk.inbox_upload.list()
  for inbox_upload in inbox_uploads.auto_paging_iter():
    # Operate on inbox_upload
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

The InboxUpload Object

Some of the methods above return a InboxUpload object. The attributes of this object are listed below.

AttributeDescription
inbox_registration
InboxRegistration
path
string
Upload path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
created_at
date-time
Upload date/time