Get deployment templateedit
Retrieves a deployment template by id.
Requestedit
GET /api/v1/platform/configuration/templates/deployments/{template_id}
Path parametersedit
Name | Type | Required | Description |
---|---|---|---|
|
|
Y |
The identifier for the deployment template. |
Query parametersedit
Name | Type | Required | Description |
---|---|---|---|
|
|
N |
If true, will return details for each instance configuration referenced by the template. |
|
|
N |
If present, it will cause the returned deployment template to be adapted to return only the elements allowed in that version. |
Responsesedit
-
200
-
(
DeploymentTemplateInfo
) The deployment template was found and returned successfully. -
404
-
(
BasicFailedReply
) The deployment template specified by {template_id} cannot be found. (code:templates.template_not_found
)Headers
-
x-cloud-error-codes
(string
; allowed values: [templates.template_not_found
]) - The error codes associated with the response
-
To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.
Request exampleedit
curl -XGET {{hostname}}/api/v1/platform/configuration/templates/deployments/{template_id} \ -H "Authorization: ApiKey $ECE_API_KEY"