Add endpoint for presigned uploads

This commit is contained in:
biondizzle
2025-06-05 19:39:58 -04:00
parent 8d950cf042
commit a6bee5be15
5 changed files with 130 additions and 0 deletions

View File

@@ -628,6 +628,25 @@ CreatePresignedUrlRequest:
type: string
example: "AKIAIOSFODNN7EXAMPLE"
CreatePresignedUploadRequest:
type: object
required:
- access_key
properties:
access_key:
type: string
example: "AKIAIOSFODNN7EXAMPLE"
expires_in:
type: integer
minimum: 1
maximum: 604800
default: 3600
example: 3600
content_type:
type: string
default: "application/octet-stream"
example: "image/jpeg"
CreatePresignedUrlResponse:
type: object
properties: