Deployment group

List deployment groups

List all deployment groups for a specific application.

get/deployment_group

Query parameters

offsetinteger

The starting point for pagination. Defaults to 0 if not provided.

limitinteger

The maximum number of results to return per page.

application_idstring required

The ID of the application to list deployment groups for.

Response

The operation was successful.

Example response

{
  "paging": {
    "total": 30,
    "limit": 200
  },
  "results": [
    {
      "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"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.