Skip to main content
GET
/
deployment
/
{id}
Get
curl --request GET \
  --url http://{host}:{port}/{contextPath}/deployment/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "someDeploymentId",
  "name": "deploymentName",
  "source": "process application",
  "deploymentTime": "2013-04-23T13:42:43.000+0200"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the deployment.

Response

Request successful.

id
string | null

The id of the deployment.

tenantId
string | null

The tenant id of the deployment.

deploymentTime
string<date-time> | null

The time when the deployment was created.

source
string | null

The source of the deployment.

name
string | null

The name of the deployment.

The links associated to this resource, with method, href and rel.