BopbeeHelp Center

Uploads API

Upload files or ZIP archives to an upload project.

Upload files

Multipart upload. Set deploy=false to save a version without deploying.

curl -X POST "https://api.bopbee.com/v1/projects/PROJECT_ID/uploads?deploy=true" \
  -H "Authorization: Bearer bb_live_your_key" \
  -F "files=@site.zip"

Multiple files:

curl -X POST https://api.bopbee.com/v1/projects/PROJECT_ID/uploads \
  -H "Authorization: Bearer bb_live_your_key" \
  -F "files=@index.html" \
  -F "files=@style.css"

Plan storage limits and ClamAV scanning apply the same as in the web app.

On this page