v10

latestOpenAPI 3.1.0raw.githubusercontent.com2025-06-19274659.0 KB
App Configuration

createLogoUploadUrl

Generate a presigned URL for uploading app logo to /<app-id>/logo.png path

post/v1/app-configurations/{appId}/logo

Request body

filenamestring required

Original filename of the logo

mime_type'image/png' | 'image/jpeg' | 'image/jpg' required

MIME type of the logo file

Example request

{
  "filename": "company-logo.png",
  "mime_type": "image/png"
}

Response

Upload URL generated successfully

upload_urlstring required

Presigned S3 URL for uploading the logo

expires_atstring date-time

Timestamp when the upload URL expires

Example response

{
  "s3ref": {
    "bucket": "my-bucket",
    "key": "manifest.json"
  }
}