v10

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

createZipUploadUrl

Generate a presigned URL to upload a zip file with artifacts that will be unpacked in a new directory under the /<app-id>/ path

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

Path parameters

appIdstring required

ID of the app configuration

Request body

filenamestring

Example request

{
  "filename": "dist.zip"
}

Response

Upload URL generated successfully

upload_urlstring required

Presigned S3 URL for uploading the bundle

artifact_urlstring required

Public CDN URL for the unpacked artifacts

expires_atstring date-time

Timestamp when the upload URL expires

Example response

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