Finish upload session
documentedFinish and commit a single upload session.
POST /2/files/upload_session/finishFilesno implementation yet0 runsNo 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/finish" \
-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}}}, \"commit\": {\"path\": \"{{$path}}\", \"mode\": \"overwrite\", \"autorename\": true, \"mute\": false, \"strict_conflict\": false}}" \
-H "Accept: application/json" \
--data-binary @{{$chunk_path}}