Sha256: 8add7bc98d32f7f0ce70ec658495cd7c2bc394e77832d0f74c11503fa0f3d332
Contents?: true
Size: 890 Bytes
Versions: 29
Compression:
Stored size: 890 Bytes
Contents
# InboxUpload ## Example InboxUpload Object ``` { "inbox_registration": "", "path": "a/b/test.txt", "created_at": "2020-01-01 00:00:00" } ``` * `inbox_registration`: * `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 --- ## List Inbox Uploads ``` Files::InboxUpload.list( per_page: 1, inbox_registration_id: 1, inbox_id: 1 ) ``` ### Parameters * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header. * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended). * `inbox_registration_id` (int64): InboxRegistration ID * `inbox_id` (int64): Inbox ID
Version data entries
29 entries across 29 versions & 1 rubygems