Sign in

Start multipart upload

documented

Initiate a multipart upload session and receive presigned part URLs.

POST /multipart/start/Uploadno 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://upload.uploadcare.com/multipart/start/" \
  -X POST \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -F "UPLOADCARE_PUB_KEY={{$uploadcare_public_key}}" \
  -F "UPLOADCARE_STORE={{$uploadcare_store}}" \
  -F "filename={{$filename}}" \
  -F "size={{$size}}" \
  -F "content_type={{$content_type}}" \
  -F "metadata[subsystem]={{$metadata_subsystem}}" \
  -F "metadata[pet]={{$metadata_pet}}" \
  -F "signature={{$signature}}" \
  -F "expire={{$expire}}"
Start multipart upload · uploadcare · OpenIntegrations