Custom Bulletin
Custom Bulletin allows to manage custom patch bulletins.
Base URL
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins
Supported Requests
| Method | URL | Input | Return |
|---|---|---|---|
|
DELETE |
https://<consoleFQDN:port>//st/console/api/v1.0/ custompatch/bulletins/{bulletinId} |
|
Success or failure code |
|
GET |
https://<consoleFQDN:port>/st/console/api/v1.0/ custompatch/ bulletins |
CustomBulletins[] |
|
|
https://<consoleFQDN:port>/st/console/api/v1.0/ custompatch/ bulletins/{bulletinId} |
|
CustomBulletin |
|
|
PUT |
https://<consoleFQDN:port>/st/console/api/v1.0/ custompatch/ bulletins/{bulletinId} |
Success or failure code |
|
|
POST |
https://<consoleFQDN:port>/st/console/api/v1.0/ custompatch/ bulletins |
CustomBulletin with Success or failure code |
Input Models
| Name | Type | Description |
|---|---|---|
| bulletinId | String | The unique identifier of the bulletin (for example, APIBull001) |
| Name |
Required? |
Type |
Default Value |
Description |
|---|---|---|---|---|
| bulletinID |
Yes |
String |
None |
The unique ID of the Custom Bulletin. |
| bulletinTitle |
Yes |
String |
None |
The title of the Custom Bulletin. |
| bulletinDescription |
Yes |
String |
None |
The description for the Custom Bulletin |
|
releasedOn |
No |
DateTime |
current UTC |
The release date. |
Example with Sample Response
To retrieve a list of all custom patch bulletins
GET Request
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins
Sample Response
{
"count": 48000,
"value": [
{
"bulletinId": "MS02-045",
"bulletinTitle": "Unchecked Buffer in Network Share Provider Can Lead to Denial of Service (Q326830)",
"bulletinDescription": "SMB (Server Message Block) is the protocol Microsoft uses to share files, printers, serial ports, and also to communicate between computers using named pipes.",
"releasedOn": "2026-02-20T10:00:00Z",
"links": {
"self": {
"href": "https://localhost:3121/st/console/api/v1.0/custompatch/bulletins/MS02-045"
}
}
},
{
"bulletinId": "MS04-008",
"bulletinTitle": "A hardware DEP-enabled computer may stop responding when you resume from standby or from hibernation",
"bulletinDescription": "Your Microsoft Windows XP Service Pack 2 (SP2)-based computer may unexpectedly stop responding or experience random memory corruption when you resume from standby or hibernation.",
"releasedOn": "2026-02-20T10:00:00Z",
"links": {
"self": {
"href": "https://localhost:3121/st/console/api/v1.0/custompatch/bulletins/MS04-008"
}
}
},
{
"bulletinId": "MS02-055",
"bulletinTitle": "Unchecked Buffer in Windows Help Facility Could Enable Code Execution (Q323255)",
"bulletinDescription": "The HTML Help facility in Windows includes an ActiveX control that provides much of its functionality. One of the functions exposed via the control contains a buffer overflow.",
"releasedOn": "2026-02-21T10:00:00Z",
"links": {
"self": {
"href": "https://localhost:3121/st/console/api/v1.0/custompatch/bulletins/MS02-055"
}
}
}
]
}
Other Request Examples
Get Request
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins/{bulletinId}
POST Request
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins
{
"BulletinID": "APIBull001",
"BulletinTitle": "Custom Bulletin",
"BulletinDescription": "Custom Bulletin"
}
PUT Request
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins/{bulletinId}
{
"bulletinTitle": "Ivanti Custom Bulletin"
}
DELETE Request
https://<consoleFQDN:port>/st/console/api/v1.0/custompatch/bulletins/{bulletinId}