Remote PC

List Remote PC

get

Retrieve the Remote PC Static list of a Provider.

Path parameters
idinteger · int32Required

Provider ID

Responses
200
Success
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 Remote PC

post

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

put

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

Delete Remote PC

delete

Remove a Remote PC Static from a Provider.

Path parameters
idinteger · int32Required

Provider ID

remotePCStaticIdstringRequired

Remote PC Static ID

Responses
204
No Content
delete
DELETE /api/Provider/remotepcstatic/{id}/remotepc/{remotePCStaticId} HTTP/1.1
Host: 
Accept: */*

No content

Was this helpful?