Remote PC
Retrieve the Remote PC Static list of a Provider.
Path parameters
idinteger · int32Required
Provider 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/remotepcstatic/{id}/remotepc HTTP/1.1
Host:
Accept: */*
[
{
"id": "text",
"name": "text",
"mac": "text",
"subnet": "text"
}
]
Add a Remote PC Static to a Provider.
Path parameters
idinteger · int32Required
Provider ID
Body
Add a new Remote PC Static to a Provider
remotePCStaticNamestring | nullableRequired
Remote PC Static Name.
macstring | nullableRequired
Remote PC Static MAC Address.
subnetstring | nullableOptional
Remote PC Static Subnet. Default: 0.0.0.0
Responses
201
Created
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
409
Conflict
application/json; api-version=1.0
post
POST /api/Provider/remotepcstatic/{id}/remotepc HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 58
{
"remotePCStaticName": "text",
"mac": "text",
"subnet": "text"
}
No content
Update a Remote PC Static of a Provider.
Path parameters
idinteger · int32Required
Provider ID
remotePCStaticIdstringRequired
Remote PC Static ID
Body
Set a Remote PC Static within a Provider
remotePCStaticNamestring | nullableOptional
Remote PC Static Name
macstring | nullableOptional
Remote PC Static MAC Address
subnetstring | nullableOptional
Remote PC Static Subnet
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
put
PUT /api/Provider/remotepcstatic/{id}/remotepc/{remotePCStaticId} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 58
{
"remotePCStaticName": "text",
"mac": "text",
"subnet": "text"
}
No content
Remove a Remote PC Static from a Provider.
Path parameters
idinteger · int32Required
Provider ID
remotePCStaticIdstringRequired
Remote PC Static ID
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
delete
DELETE /api/Provider/remotepcstatic/{id}/remotepc/{remotePCStaticId} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?