GET /aicc/subscriptions/{id}
Use this method to return information about a specific Lenovo XClarity Administrator subscriptions.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/aicc/subscriptions/{id}
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
400 | Bad Request | A query parameter or request attribute is missing or not valid, or the operation is not supported. A descriptive error message is returned in the response body. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Attributes | Type | Description | ||
---|---|---|---|---|
id | Integer | Subscription ID | ||
monitor_uri | String | Network-related resource that is to be monitored by XClarity Administrator If monitor_uri is set to If monitor_uri is set to , IP change notifications are received through DHCP. | ||
submonitor_uri | String | Subresource to be monitored by XClarity Administrator. You will receive notifications for only this resource | ||
uri | String | Resource to which XClarity Administrator writes a POST when XClarity Administrator detects a change in monitored resource The specified URI must be able to accept POST requests, where the body of the POST matches the JSON PUT to monitor_uri. |
The following example is returned if the request is successful.
{
"id": 2,
"monitor_uri": "/aicc",
"submonitor_uri": "/ntp",
"uri": "/ntpNotification"
}
Give documentation feedback