Error
Uploads
Mint signed upload URL
Get a direct-to-storage signed upload URL for large files, then register the finished upload as a media library asset.
POST
Error
Mints a short-lived signed upload URL so the file bytes go directly to
storage without passing through the API server. Use this for files too large
for POST /uploads (or whenever you want to
skip the server hop).
The 3-step flow
1
Mint the URL
POST /uploads/signed-url with a fileName. The response contains
uploadUrl and blobName.2
PUT the file bytes
PUT the raw file to uploadUrl with the correct Content-Type header.3
Register the asset
POST /uploads/complete with the
blobName — this verifies the object exists and records it in your media
library.
