Get build upload URL
Step 1 of 2 for attaching a mobile build (.apk/.ipa) to a run. Returns a presigned uploadUrl and a buildToken. Next, upload the raw build file to uploadUrl with an HTTP PUT request (request body = the raw file bytes, Content-Type = the file’s MIME type such as application/octet-stream; no auth header — the URL is presigned), then call create_application_build with the same buildToken.
Path Parameters
^app(-.+_.+|_.+)$Body
Request body for getting a presigned upload URL
Original file name (e.g. 'my-app.apk'). Preserved in storage for display and file type detection.
Target a specific project by its prefixed short ID (proj-slug_shortId or proj_shortId), as returned by the projects API. Required for organization-scoped API keys; project-scoped keys may only pass their own project's short ID.
^proj(-.+_.+|_.+)$Response
The request has succeeded.
Presigned upload URL response. Upload the file to uploadUrl, then call create_application_build with buildToken.
Presigned URL to upload the raw build file to via HTTP PUT (request body = raw file bytes, Content-Type = the file's MIME type such as application/octet-stream). No auth header is required.
Opaque token identifying this upload. Pass it unchanged to create_application_build once the PUT upload succeeds.
Human-readable hint describing the next step in the upload chain.