Client Filters

Deprecated

Get Client filter

get

Retrieve the filtered client device names for the specified published resource. Deprecated path - Use Criteria section instead.

Path parameters
idinteger · int32Required

ID of the published resource to be acquired.

Responses
200
Success
application/json; api-version=1.0
Responsestring[]
get
GET /api/PubItems/{id}/ClientFilters HTTP/1.1
Host: 
Accept: */*
[
  "text"
]
Deprecated

Add Client filter

post

Add a client device name to the filter of type 'Client Device Name' for the specified published resource. Deprecated path - Use Criteria section instead.

Path parameters
idinteger · int32Required

ID of the published resource to be updated

Body

Add a client device name to the filter of type 'Client Device Name' for the specified published resource

clientstring | nullableRequired

FQDN, computer name, or IP address of the client to add to the filter.

Responses
201
Created
post
POST /api/PubItems/{id}/ClientFilters HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 17

{
  "client": "text"
}

No content

Deprecated

Delete Client filter

delete

Delete a client device name to the filter of type 'Client Device Name' for the specified published resource. Deprecated path - Use Criteria section instead.

Path parameters
idinteger · int32Required

ID of the published resource to be updated

clientstringRequired

Name of the Client filter to be deleted

Responses
204
No Content
delete
DELETE /api/PubItems/{id}/ClientFilters/{client} HTTP/1.1
Host: 
Accept: */*

No content

Was this helpful?