Messages
Retrieve Auto-upgrade Message(s).
Success
Unauthorized
Not Found
GET /api/VDIDefaultSettings/AutoUpgrade/Messages HTTP/1.1
Host:
Accept: */*
[
{
"id": 1,
"enabled": true,
"messageTitle": "text",
"message": "text",
"sendMsgSecs": 1,
"sendMsgWhen": [
"0 = Before",
"1 = After"
]
}
]
Create an Auto-upgrade Message.
Add a message to the Auto-upgrade message list
Whether to enable or disable the message.
The title of the message.
A message that should be sent to users before the job starts.
Time interval in seconds before the job starts when the message to users should be sent.
Whether the message is sent Before/After the schedule is triggered. Send Message When can only be set to After in the case of Reboot.
Created
Unauthorized
Not Found
POST /api/VDIDefaultSettings/AutoUpgrade/Messages HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 112
{
"enabled": true,
"messageTitle": "text",
"message": "text",
"sendMsgSecs": 1,
"sendMsgWhen": [
"0 = Before",
"1 = After"
]
}
No content
Retrieve an Auto-upgrade Message.
The ID of the message to retrieve.
Success
Unauthorized
Not Found
GET /api/VDIDefaultSettings/AutoUpgrade/Messages/{messageId} HTTP/1.1
Host:
Accept: */*
{
"id": 1,
"enabled": true,
"messageTitle": "text",
"message": "text",
"sendMsgSecs": 1,
"sendMsgWhen": [
"0 = Before",
"1 = After"
]
}
Update an Auto-upgrade Message.
The ID of the message to modify.
Modify a message within the Auto-upgrade message list
Whether to enable or disable the message.
The title of the message.
A message that should be sent to users before the job starts.
Time interval in seconds before the job starts when the message to users should be sent.
Whether the message is sent Before/After the schedule is triggered. Send Message When can only be set to After in the case of Reboot.
No Content
Unauthorized
Not Found
PUT /api/VDIDefaultSettings/AutoUpgrade/Messages/{messageId} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 112
{
"enabled": true,
"messageTitle": "text",
"message": "text",
"sendMsgSecs": 1,
"sendMsgWhen": [
"0 = Before",
"1 = After"
]
}
No content
Delete an Auto-upgrade Message by ID.
The ID of the message to remove.
No Content
Unauthorized
Not Found
DELETE /api/VDIDefaultSettings/AutoUpgrade/Messages/{messageId} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?