Available in Classic and VPC
Get admin information to set event notification recipients.
You can check and edit the details of admin groups in the Services > Management & Governance > Notification Recipient menu of the NAVER Cloud Platform console. For more information, see Notification Recipient user guide.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v2/notification/manager-groups/{managerGroupNo} |
Request headers
For information about the headers common to all Live Station APIs, see Live Station request headers.
Request path parameters
You can use the following path parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
managerGroupNo |
Integer | - | Admin group number
|
Request example
The request example is as follows:
curl --location --request GET 'https://livestation.apigw.ntruss.com/api/v2/notification/manager-groups/4248' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json' \
--header 'x-ncp-region_code: KR'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
content |
Array | - | Admin list: content |
content
The following describes content
.
Field | Type | Required | Description |
---|---|---|---|
managerNo |
Integer | - | Admin identification number |
managerName |
String | - | Admin name |
cellPhoneNo |
String | - | Admin's mobile phone number |
emailAddress |
String | - | Admin email address |
Response status codes
For information about the HTTP status codes common to all Live Station APIs, see Live Station response status codes.
Response example
The response example is as follows:
{
"content": [
{
"managerNo": ******,
"managerName": "Gildong Hong",
"cellPhoneNo": "01012345678",
"emailAddress": "ghdrlfehd@navercloud.com"
},
{
"managerNo": ******,
"managerName": "test_user",
"cellPhoneNo": "01012345678",
"emailAddress": "user12345@navercloud.com"
},
{
"managerNo": *******,
"managerName": "Gildong Hong",
"cellPhoneNo": "",
"emailAddress": "gildong_h@navercloud.com"
}
]
}