Skip to main content
POST
Verify a presigned-URL upload landed in S3

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string
required

Body

application/json
bundle_s3_key
string
required

S3 key returned by /deploy/upload-url — the object you just PUT to.

Response

Successful Response

Confirms a presigned-URL upload landed in S3.

S3 presigned PUTs return an empty body — the ETag is only in response headers, which many clients can't surface (CORS restrictions, browser DevTools gotchas). This endpoint does a server-side HEAD on the bundle and returns the object metadata so clients can verify their upload succeeded.

bundle_s3_key
string
required

S3 key that was verified

exists
boolean
required

True if the object exists in S3

etag
string | null

S3 ETag of the uploaded object (MD5 for single-part uploads).

size_bytes
integer | null

Size of the uploaded object in bytes.

last_modified
string | null

Last-modified timestamp (ISO 8601).