Hardware IDs

List

get

Retrieve Criteria Hardware ID List of a session server with the specified ID.

Path parameters
idinteger · int32Required

The ID of a session server for which to retrieve the Criteria settings.

ruleIdinteger · int32Required

The ID of the Rule to retrieve.

Responses
200
Success
application/json; api-version=1.0
get
GET /api/ClientPolicies/{id}/Rules/{ruleId}/Criteria/HardwareIDs HTTP/1.1
Host: 
Accept: */*
[
  {
    "hardwareID": "text"
  }
]

Add

post

Add a hardware ID to the Hardware ID List of the Criteria settings.

Path parameters
idinteger · int32Required

The ID of a session server for which to modify the Criteria settings.

ruleIdinteger · int32Required

The ID of the Rule to retrieve.

Body

Add a hardware ID to the Criteria Hardware ID list

hardwareIDstring | nullableRequired

The hardware ID to add to the Criteria.

Responses
201
Created
post
POST /api/ClientPolicies/{id}/Rules/{ruleId}/Criteria/HardwareIDs HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 21

{
  "hardwareID": "text"
}

No content

Remove

delete

Remove a hardware ID from the Hardware ID List of the Criteria settings.

Path parameters
idinteger · int32Required

The ID of a session server for which to modify the Criteria settings.

ruleIdinteger · int32Required

The ID of the Rule to retrieve.

Body

Remove a hardware ID from the Criteria Hardware ID list

hardwareIDstring | nullableRequired

The hardware ID to remove from the Criteria.

Responses
204
No Content
delete
DELETE /api/ClientPolicies/{id}/Rules/{ruleId}/Criteria/HardwareIDs HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 21

{
  "hardwareID": "text"
}

No content

Last updated

Was this helpful?