cURL
curl --request POST \ --url https://quizquail.com/api/v1/media/signed-url \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "fileName": "background.png", "contentType": "image/png" } '
{ "data": { "signedUrl": "<string>", "storagePath": "<string>", "publicUrl": "<string>" } }
Get a presigned URL for uploading large files directly to storage.
API key authentication. Prefix your key with Bearer in the Authorization header.
Bearer
Keys follow the format qq_... and can be scoped to specific permissions.
qq_...
1
"background.png"
"image/png"
Signed upload URL
Show child attributes
Was this page helpful?