Build
build
Methods
Submit Build -> { account_id, build_id, build_status, 8 more... }
post/v5/builds
Submit a container image build.
Upload a tar.gz archive containing the build context (Dockerfile and any files needed for the build) along with image name, tag, and optional build arguments.
Maximum file size: 500MB
Get Build -> { account_id, build_id, build_status, 8 more... }
get/v5/builds/{build_id}
Get a build by ID, including current status from the cloud provider.
List Builds -> CursorPage<{ account_id, build_id, build_status, 8 more... }>
get/v5/builds
List Builds
get/v5/builds/{build_id}/logs
Stream build logs via Server-Sent Events (SSE).
Returns a streaming response with content-type text/event-stream. Each log line is sent as an SSE data event.
Cancel Build -> unknown
post/v5/builds/{build_id}/cancel
Cancel a pending or running build.
Returns 202 Accepted — the actual cancellation happens asynchronously via a Temporal workflow.
path Parameters
build_id: string
Request example
200Example
Domain types
BuildCancelResponse = unknown
BuildCreateResponse = { account_id, build_id, build_status, 8 more... }
BuildListResponse = { account_id, build_id, build_status, 8 more... }
BuildRetrieveResponse = { account_id, build_id, build_status, 8 more... }
StreamChunk = { line }
A single log line from the build process.