Sign in

Check URL save job

documented

Check the status of a save_url job.

POST /2/files/save_url/check_jobFilesno 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)

Note: The official Dropbox API v2 endpoint for checking a save_url job is /2/files/save_url/check_job_status (not /check_job). See the v1→v2 migration mapping. ([dropbox.com](https://www.dropbox.com/developers/reference/migration-guide))
npx -y keychains@latest curl "https://api.dropboxapi.com/2/files/save_url/check_job_status" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"async_job_id": "{{$async_job_id}}"}'