Inbox Uploads

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

List Inbox Uploads

Endpoint

GET/inbox_uploads

Return Object

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

curl https://app.files.com/api/rest/v1/inbox_uploads.json \
  -H 'X-FilesAPI-Key: YOUR_API_KEY'

Example Response

[
  {
    "inbox_registration": {
      "code": "abc123",
      "name": "account",
      "company": "Action Verb",
      "email": "john.doe@files.com",
      "ip": "10.1.1.1",
      "clickwrap_body": "example",
      "form_field_set_id": 1,
      "form_field_data": {
        "key": "example value"
      },
      "inbox_id": 1,
      "inbox_recipient_id": 1,
      "inbox_title": "example",
      "created_at": "2000-01-01T01:00:00Z"
    },
    "path": "a/b/test.txt",
    "created_at": "2000-01-01T01:00:00Z"
  }
]

The InboxUpload Object

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

Example InboxUpload Object

{
  "inbox_registration": {
    "code": "abc123",
    "name": "account",
    "company": "Action Verb",
    "email": "john.doe@files.com",
    "ip": "10.1.1.1",
    "clickwrap_body": "example",
    "form_field_set_id": 1,
    "form_field_data": {
      "key": "example value"
    },
    "inbox_id": 1,
    "inbox_recipient_id": 1,
    "inbox_title": "example",
    "created_at": "2000-01-01T01:00:00Z"
  },
  "path": "a/b/test.txt",
  "created_at": "2000-01-01T01:00:00Z"
}