// Deployments

Get deployment status

Fetch live status and logs for a running or completed deployment.

GET/api/deployment

Description

Returns the current status of a deployment, plus a chunk of logs. To poll incrementally, pass status.LastLogDateTick from the previous response as getLogsAfter.

Parameters

NameInTypeRequiredDescription
deploymentId query string yes ID of the deployment.
skipLogs query boolean no Set to true to skip the log body and just get status.
getLogsAfter query number no A .NET DateTimeOffset.Ticks value, normally status.LastLogDateTick from the previous response. Only log entries strictly newer than this value are returned.

Errors

StatusMeaning
400 Invalid or unknown deploymentId.
401 Missing or invalid Basic auth credentials, or the service account lacks the required role.