Skip to main content

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

CodeDescriptionComments
200OKThe request completed successfully.
400Bad RequestA 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.
500Internal Server ErrorAn internal error occurred. A descriptive error message is returned in the response body.

Response body

AttributesTypeDescription
bulletinsArray of objectsInformation about each bulletin
 idStringBulletin ID
 categoryStringBulletin category
 componentStringComponent associated with this bulletin
 dateLongDate when the bulletin was published
 date_rangeStringPeriod 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_dateLongEnd date

Bulletins that were published on specified date or later are included in this response.

 linkStringURL to detailed information about the bulletin
 messageStringBulletin message
 severityStringBulletin severity
 start_dateLongStart date

Bulletins that were published on specified date or earlier are included in this response.

enabledBooleanIndicates whether receiving bulletins is enabled. This can be one of the following values.
  • true. Receiving bulletins is enabled.
  • false. Receiving bulletins is disabled.
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
}