ZuploZuplo
LoginStart for Free
  • Documentation
  • API Reference
Information
Analytics
    Get recent requests for a given deployment in the last 24 hoursgetGet statistics on requests by status code for a given deploymentget
API Keys - Buckets
    Lists bucketsgetCreates a bucketpostGets a bucketgetDeletes a bucketdeleteUpdates a bucketpatch
API Keys - Consumers
    Lists consumersgetCreates a consumerpostGets a consumergetDeletes a consumerdeleteUpdates a consumerpatchRoll consumer keyspost
API Keys - Keys
    Lists keysgetCreates an API keypostCreates multiple API keyspostGets an API keygetDeletes an API keydeleteUpdates an API keypatch
API Keys - Managers
    Lists managersgetCreates a managerpostDeletes a managerdelete
Audit Logs
    Query audit logsget
Build Logs
    Get build logsget
Client mTLS CA Certificates
    List Client mTLS CA CertificatesgetCreate Client mTLS CA CertificatepostDelete Client mTLS CA CertificatedeleteUpdate Client mTLS CA Certificatepatch
Custom Domains
    Get Custom DomainsgetCreate Custom DomainpostDelete a Custom DomaindeleteUpdate a Custom Domainpatch
Deployments
    Gets a deployment statusgetLists deploymentsgetUpload deployment sourcepostGet a deploymentgetDeletes a deploymentdeleteRe-deploy a deploymentpost
Environments
    Query environmentsgetGet an environmentget
MCP Servers
    API MCP ServerpostDocs MCP Serverpost
Metering - Features
    List featuresgetCreate featurepostGet featuregetDelete featuredelete
Metering - Meters
    List metersgetCreate meterpostGet metergetUpdate meterputDelete meterdeleteList meter group by valuesgetQuery metergetQuery meterpost
Metering - Plans
    List plansgetCreate a planpostGet plangetUpdate a planputDelete plandeleteArchive plan versionpostPublish planpost
Projects
    Create projectpost
Runtime Logs
    List request logsgetGet request log detailget
Tunnel Services
    Gets a provisioning statusgetGets a service configurationgetConfigures tunnel servicesput
Tunnels
    Lists tunnelsgetCreates a tunnelpostGets a tunnelgetDeletes a tunneldeleteRotates the tokenpostGets a teardown statusget
Variables
    Creates a variablepostUpdates a variablepatch
Other endpoints
    OpenAPI SpecificationgetLists accountsgetLists projectsgetWho Am Iget
Schemas
powered by Zudoku
Zuplo Developer API
Zuplo Developer API

Build Logs


Get build logs

GET
https://dev.zuplo.com
/v1/deployments/{deploymentName}/build-logs/{buildId}

Retrieves the build logs for a deployment build, grouped by stage (API and Dev Portal) and by build step. Optionally filterable by stage and step.

Get build logs › path Parameters

deploymentName
​string · required

The name of the deployment. You can find this in the Zuplo Portal under Settings > Environments.

buildId
​string · required

The unique identifier of the build (UUID).

Get build logs › query Parameters

stage
​Zuplo.BuildLogs.BuildLogStage · enum

Filter build logs to a specific stage. Required when step is set.

The build stage that produced a set of build logs. Wire values are kebab-case (api, dev-portal); the response groups logs under camelCase keys (api, devPortal). Mirrors tenant-api's DeploymentStageNameSchema — keep in sync when new stages are added upstream.

Enum values:
api
dev-portal
step
​string

Filter build logs to a specific build step within the stage. Requires stage to also be set.

Get build logs › Responses

The request has succeeded.

Response containing the build logs for a deployment build.
Zuplo.BuildLogs.BuildLogsResponse
​object · required

Build logs grouped by stage and step.

GET/v1/deployments/{deploymentName}/build-logs/{buildId}
curl https://dev.zuplo.com/v1/deployments/:deploymentName/build-logs/:buildId
Example Responses
{ "data": { "api": { "build": [ { "0": "2024-01-01T00:00:00.000Z", "1": "INFO", "2": "Build started" } ] }, "devPortal": {} } }
json
application/json

Audit LogsClient mTLS CA Certificates