Process
Retrieve the list of all processes for all the VDI Host sessions.
Query parameters
SiteIdinteger · int32Optional
Site ID from which to retrieve the specified Provider server information (optional).
ServerstringOptional
The name of the Provider server for which to retrieve the information (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/Provider/VM/Host/Process HTTP/1.1
Host:
Accept: */*
[
{
"name": "text",
"appName": "text",
"process": "text",
"pid": 1,
"user": "text",
"session": 1,
"serverID": 1,
"vdiHostId": "text"
}
]
Retrieve the list of all processes for all the sessions of a specified Provider.
Path parameters
providerIdinteger · int32Required
The ID of the Provider server.
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/Provider/{providerId}/VM/Host/Process HTTP/1.1
Host:
Accept: */*
[
{
"name": "text",
"appName": "text",
"process": "text",
"pid": 1,
"user": "text",
"session": 1,
"serverID": 1,
"vdiHostId": "text"
}
]
Retrieve the list of all processes for a specified VDI Host of a specified Provider.
Path parameters
providerIdinteger · int32Required
The ID of the Provider server.
vmIdstringRequired
VM 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/Provider/{providerId}/VM/{vmId}/Host/Process HTTP/1.1
Host:
Accept: */*
[
{
"name": "text",
"appName": "text",
"process": "text",
"pid": 1,
"user": "text",
"session": 1,
"serverID": 1,
"vdiHostId": "text"
}
]
Retrieve a specified process for a specified session of a specified Provider.
Path parameters
providerIdinteger · int32Required
The ID of the Provider server.
vmIdstringRequired
VM ID.
pIdinteger · int32Required
ID of the process to be retrieved
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/Provider/{providerId}/VM/{vmId}/Host/Process/{pId} HTTP/1.1
Host:
Accept: */*
{
"name": "text",
"appName": "text",
"process": "text",
"pid": 1,
"user": "text",
"session": 1,
"serverID": 1,
"vdiHostId": "text"
}
Was this helpful?