Help Center/ Elastic Cloud Server/ API Reference/ APIs/ ECS Group Management/ Querying Details About an ECS Group
Updated on 2025-12-10 GMT+08:00

Querying Details About an ECS Group

Function

This API is used to query details about an ECS group.

Debugging

You can debug this API in API Explorer.

Authorization

Each account has all of the permissions required to call all APIs, but IAM users must have the required permissions specifically assigned.
  • If you are using role/policy-based authorization, see the required permissions in Permissions and Supported Actions.
  • If you are using identity policy-based authorization, the permissions listed below are required.

Action

Access Level

Resource Type (*: required)

Condition Key

Alias

Dependencies

ecs:cloudServers:showServerGroup

read

-

-

ecs:cloudServers:get

-

URI

GET /v1/{project_id}/cloudservers/os-server-groups/{server_group_id}

Table 1 describes the parameters in the URI.
Table 1 Parameter description

Parameter

Mandatory

Description

project_id

Yes

Specifies the project ID.

For details about how to obtain the ID, see Obtaining a Project ID.

server_group_id

Yes

Specifies an ECS group UUID.

Request

None

Response

Table 2 describes the response parameters.

Table 2 Response parameters

Parameter

Type

Description

server_group

Object

Specifies the ECS group information. For details, see Table 3.

Table 3 server_group parameters

Parameter

Type

Description

id

String

Specifies an ECS group UUID.

name

String

Specifies the ECS group name.

policies

Array of strings

Specifies the policies associated with the ECS group.

members

Array of strings

Specifies the ECS contained in an ECS group.

metadata

Object

Specifies the ECS group metadata.

Example Request

Query details about the specified ECS group.

GET https://{endpoint}/v1/{project_id}/cloudservers/os-server-groups/{server_group_id}

Example Response

{
    "server_group": {
        "id": "5bbcc3c4-1da2-4437-a48a-66f15b1b13f9",
        "name": "test",
        "policies": ["anti-affinity"],
        "members": [],
        "metadata": {}
       }
}

Error Codes

See Error Codes.