File Extensions
Add a file extension for the specified published RD Session Host application.
ID of the published RD Session Host application to be updated
Update a file extension of the published resource
The file extension that will be added/modified.
POST /api/PubItems/{id}/Apps/FileExtensions HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 20
{
"extension": "text"
}
No content
Modify properties of a file extension for the specified published RD Session Host application.
ID of the published RD Session Host application to be updated
Name of the file extension that will be updated
Update a file extension of the published application
The file extension that will be added/modified.
Whether the file extension should be enabled or disabled for the specified published app.
File extension parameters for the specified published app.
PUT /api/PubItems/{id}/Apps/FileExtensions/{extension} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 55
{
"extension": "text",
"enabled": true,
"parameters": "text"
}
No content
Remove a file extension from the specified published RD Session Host application.
ID of the published RD Session Host application to be updated
The file extension that will be deleted
DELETE /api/PubItems/{id}/Apps/FileExtensions/{extension} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?