Group Filter
Retrieve the group filters from the Theme
Path parameters
idinteger · int32Required
Theme 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/Theme/{id}/GroupFilter HTTP/1.1
Host:
Accept: */*
[
{
"name": "text",
"sid": "text"
}
]
Add the specified group filter to the Theme.
Path parameters
idinteger · int32Required
Theme ID
Body
Add a group filter in the RAS Theme
groupNamestring | nullableOptional
The name of the group list
groupSIDstring | nullableOptional
The group SID
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
post
POST /api/Theme/{id}/GroupFilter HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 38
{
"groupName": "text",
"groupSID": "text"
}
No content
Remove the specified group filter from the Theme
Path parameters
idinteger · int32Required
Theme ID
Body
Add a group filter in the RAS Theme
groupNamestring | nullableOptional
The name of the group list
groupSIDstring | nullableOptional
The group SID
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
delete
DELETE /api/Theme/{id}/GroupFilter HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 38
{
"groupName": "text",
"groupSID": "text"
}
No content
Was this helpful?