Version

Get Versions By Name

get

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
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"
  }
]

Get Versions

get

Retrieve a list of template's versions.

Path parameters
idinteger · int32Required

Template ID

Responses
200
Success
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"
  }
]

Update Version

put

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
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

Delete Version

delete

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
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?