Generate Thumbnail Upload URL

Generates a pre-signed URL for securely uploading a thumbnail image. The link expires after 10 minutes.

Considerations:

  • Uploaded images are not optimized by the server; please upload images pre-optimized for web use.
  • Each uploaded file receives a unique thumbnailId for reference within your application, but the file name in the bucket is derived from this ID, ensuring no conflicts with existing files.
SecurityZephrHmacHttp
Request
Request Body schema: application/json
required
fileName
string

The name of the file. Unique file names are recommended but not enforced; the system generates a unique ID for each upload.

contentType
string

The MIME type of the file. Supported MIME types include image/jpeg, image/png, and image/gif.

Responses
200

Successfully generated URL for thumbnail upload.

400

The request is invalid. A required attribute is missing or an attribute did not meet the expected criteria.

401

Authentication credentials were not provided or are invalid.

post/v4/thumbnails/upload-url
Request samples
application/json
{
  • "fileName": "unique-thumbnail.jpg",
  • "contentType": "image/jpeg"
}
Response samples
application/json
{}