User Filters
Retrieve the filtered user accounts device names for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be acquired.
GET /api/PubItems/{id}/UserFilters HTTP/1.1
Host:
Accept: */*
[
{
"account": "text",
"type": [
"1 = User",
"2 = Group",
"3 = ForeignSecurityPrincipal",
"4 = Computer"
],
"sid": "text"
}
]
Add a User account to the filter of type 'User' for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be updated
Add a user or group account to the filter of type 'User' for the specified published resource
The name of the user/group account to add to the filter.
The SID of the user/group account to add to the filter.
POST /api/PubItems/{id}/UserFilters HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 31
{
"account": "text",
"sid": "text"
}
No content
Delete a User account from the filter of type 'User' for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be updated
Account of User to be deleted from the filter
DELETE /api/PubItems/{id}/UserFilters/{account} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?