Get Deployment
Retrieves a deployment by id, according to the Deployment
interface of the engine.
Method
GET /deployment/{id}
Parameters
Path Parameters
Name | Description |
---|---|
id | The id of the deployment. |
Result
A JSON object corresponding to the Deployment
interface of the engine. Its properties are as follows:
Name | Value | Description |
---|---|---|
id | String | The id of the deployment. |
name | String | The name of the deployment. |
source | String | The source of the deployment. |
deploymentTime | Date | The date and time of the deployment. |
Response Codes
Code | Media type | Description |
---|---|---|
200 | application/json | Request successful. |
404 | application/json | Deployment with given id does not exist. See the Introduction for the error response format. |
Example
Request
GET /deployments/someDeploymentId
Response
Status 200.
{
"id": "someDeploymentId",
"name": "deploymentName",
"source": "process application",
"deploymentTime": "2013-04-23T13:42:43.000+0200"
}