Skip to main content
string
required
The API key for your account. You can find this in your account settings.
Chunked Abort cancels an upload opened with Chunked Init and drops the chunks already stored. It is idempotent: aborting an upload that was already completed or aborted still reports success. Call it whenever the user abandons an upload. Until then, the stored chunks count against the account’s limit of 8 open uploads, and only the service’s reclaim job frees them, about 24 hours after the last activity. A client that loses its token cannot cancel, so persist the token if the upload spans a page reload. This is deliberately the loosest-limited route of the chunked flow (10 requests per 10 seconds): cancelling a batch of uploads should never be throttled into leaving them open.
string
required
The opaque upload token returned by Chunked Init.

Response

string
Indicates whether the call was successful. “success” if successful, “error” if not.

Troubleshooting