Skip to main content
GET
/
applications
/
{applicationId}
/
versions
/
{version}
/
deployment
/
{deploymentId}
Get the status of a deployment
curl --request GET \
  --url https://local.withsutro.com/applications/{applicationId}/versions/{version}/deployment/{deploymentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-sutro-api-client: <api-key>'
{
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Builder authentication and authorization

x-sutro-api-client
string
header
required

A unique identifier for the API Client making a request

Path Parameters

applicationId
string<uuid>
required
version
string
required

A semver compatible version string A version string for an Application

Example:

"1.2.34"

deploymentId
string<uuid>
required

Response

The current status of the deployment

status
string
required
Examples:

"InProgress"

"Successful"

"Failed"