Sign in

Append to upload session

documented

Append data to an ongoing upload session.

POST /2/files/upload_session/append_v2Filesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://content.dropboxapi.com/2/files/upload_session/append_v2" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/octet-stream" \
  -H "Dropbox-API-Arg: {\"cursor\": {\"session_id\": \"{{$session_id}}\", \"offset\": {{$offset}}}, \"close\": {{$close}}}" \
  --data-binary "{{$chunk}}"
Append to upload session · Dropbox · OpenIntegrations