Back to DropboxFiles - Upload Session - Append V2
Append more data to an upload session.
When the parameter close is set, this call will close the session.
A single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB.
Input
type: object
properties:
data:
type: object
description: >
cursor: Contains the upload session ID and the offset.
close: If true, the current session will be closed, at which point you
won't be able to call :route:`upload_session/append_v2` anymore with the
current session.
properties:
cursor:
type: object
description: >
session_id: The upload session ID (returned by
:route:`upload_session/start`).
offset: The amount of data that has been uploaded so far. We use this
to make sure upload data isn't lost or duplicated in the event of a
network error.
properties:
session_id:
type: string
description: The upload session ID (returned by :route:`upload_session/start`).
offset:
type: number
description: >-
The amount of data that has been uploaded so far. We use this to
make sure upload data isn't lost or duplicated in the event of a
network error.
close:
type: boolean
description: >-
If true, the current session will be closed, at which point you won't
be able to call :route:`upload_session/append_v2` anymore with the
current session.
title: Data