Version
Retrieve a list of template's versions.
Query parameters
SiteIdinteger · int32Optional
Site ID for which the template with version information will be retrieved (optional)
NamestringOptional
Filter the result by name (optional)
Responses
200
Success
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/VDI/Template/Version HTTP/1.1
Host:
Accept: */*
[
{
"adminCreate": "text",
"adminLastMod": "text",
"timeCreate": "2025-07-07T11:59:48.539Z",
"timeLastMod": "2025-07-07T11:59:48.539Z",
"name": "text",
"id": 1,
"templateId": 1,
"description": "text"
}
]
Retrieve a list of template's versions.
Path parameters
idinteger · int32Required
Template ID
Responses
200
Success
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/VDI/Template/{id}/Version HTTP/1.1
Host:
Accept: */*
[
{
"adminCreate": "text",
"adminLastMod": "text",
"timeCreate": "2025-07-07T11:59:48.539Z",
"timeLastMod": "2025-07-07T11:59:48.539Z",
"name": "text",
"id": 1,
"templateId": 1,
"description": "text"
}
]
Modify properties of a RAS Template version.
Path parameters
idinteger · int32Required
The ID of a RAS Template
VersionIdinteger · int32Required
The ID of a RAS Template Version
Body
newNamestring | nullableOptional
Template version name.
descriptionstring | nullableOptional
Template version description
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
put
PUT /api/VDI/Template/{id}/Version/{VersionId} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39
{
"newName": "text",
"description": "text"
}
No content
Remove settings of a RAS Template version.
Path parameters
idinteger · int32Required
The ID of a RAS Template
VersionIdinteger · int32Required
The ID of a RAS Template Version
Responses
204
No Content
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
delete
DELETE /api/VDI/Template/{id}/Version/{VersionId} HTTP/1.1
Host:
Accept: */*
{
"adminCreate": "text",
"adminLastMod": "text",
"timeCreate": "2025-07-07T11:59:48.539Z",
"timeLastMod": "2025-07-07T11:59:48.539Z",
"name": "text",
"id": 1,
"templateId": 1,
"description": "text"
}
Was this helpful?