Inbox Uploads

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

List Inbox Uploads

SDK Function

InboxUpload.list()

Return Object

ListIterator<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 com.files.ListIterator;
import com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.InboxUpload;

try {
  HashMap<String, Object> parameters = new HashMap<>();
  ListIterator<InboxUpload> inboxUploads = InboxUpload.list(parameters);
  for (InboxUpload inboxUpload : inboxUploads.listAutoPaging()) {
    // Operate on inboxUpload
  }
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

The InboxUpload Object

Some of the functions 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