Deployment group
Read deployment group
Retrieves information about a specific deployment group.
get/deployment_group/{id}
Path parameters
idstring required
The ID of the deployment group to read.
Response
The operation was successful.
Example response
{
"id": "1",
"status": "running",
"deployments": [
{
"strategy": "blue_green",
"strategy_data": {
"switched_traffic": 30,
"desired_switched_traffic": 50,
"amount_instances_to_wait": 5,
"healthy_instances": 3,
"launched_instances": 5,
"switch_traffic_step": true
}
}
],
"scopes": [
{
"name": "AR - Staging"
}
],
"strategy_data": {
"switched_traffic": 30,
"desired_switched_traffic": 50,
"amount_instances_to_wait": 5,
"healthy_instances": 3,
"launched_instances": 5,
"switch_traffic_step": true
},
"application_id": "6789",
"release_id": "5678",
"deployments_amount": 5,
"created_at": "2023-10-01T12:34:56Z",
"updated_at": "2023-10-01T12:34:56Z"
}