GET /bulletinService
Use this method to return a list of bulletins from the last 30 days.
Note
This REST API requires Lenovo XClarity Administrator v3.3.0 or later.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/bulletinService
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 | ||
---|---|---|---|---|
bulletins | Array of objects | Information about each bulletin | ||
id | String | Bulletin ID | ||
category | String | Bulletin category | ||
component | String | Component associated with this bulletin | ||
date | Long | Date when the bulletin was published | ||
date_range | String | Period in which the bulletin is valid This date is specified using ISO-8601 format (for example, 2019-05-02). For information about ISO-8601 format, see the W3C Date and Time Formats webpage. | ||
end_date | Long | End date Bulletins that were published on specified date or later are included in this response. | ||
link | String | URL to detailed information about the bulletin | ||
message | String | Bulletin message | ||
severity | String | Bulletin severity | ||
start_date | Long | Start date Bulletins that were published on specified date or earlier are included in this response. | ||
enabled | Boolean | Indicates whether receiving bulletins is enabled. This can be one of the following values.
|
The following example is returned if the request is successful.
{
"bulletins": [{
"id": 1,
"category": "Planned Outage",
"component": "Call home",
"date": 1611292020000,
"date_range": "2021-07-23 - 2021-08-31",
"end_date": 1630393200000,
"link": "[https://datacentersupport.lenovo.com/us/en/products/solutions-and-software/]
software/lenovo-xclarity/lxca/solutions/ht507888-how-to-upload-a-file-to-
lenovo-data-center-support",
"message": "There is a planned outage of the call home servers from 7/23 ??? 8/31.
During this time, call home requests will fail. It is recommended that you
check for alerts on your LXCA to see if any service tickets should be opened
manually.",
"severity": "Call home",
"start_date": 1627023600000
}],
"enabled": true
}
Give documentation feedback