GET /api/management/groupname

Description

Get the name of the group that the API Server or Node Manager is running in. This is the name used to identify the group within the domain topology.

The Management API resides in the API Servers, therefore this method must be invoked via the Routing API in the Admin Node Manager, e.g. https://localhost:8090/api/router/service/instance-1/api/management/groupname.


Resource URL

https://localhost:8090/api/management/groupname
https://localhost:8090/api/router/service/{serviceID}/api/management/groupname


Parameters


Response Codes

Response Code Description
200 Success. The response body contains a group name.

Example Request and Response

GET https://localhost:8090/api/router/service/instance-1/api/management/groupname

HTTP 1.1 200 OK

{
    "result": "Group1"
}