Loading...
Retrieve the group filters from the Theme
Theme ID.
curl -L \ --url '/api/Theme/{id}/GroupFilter'
[ { "name": "text", "sid": "text" } ]
Add the specified group filter to the Theme.
Theme ID
The name of the group list
The group SID
curl -L \ --request POST \ --url '/api/Theme/{id}/GroupFilter' \ --header 'Content-Type: application/json; api-version=1.0' \ --data '{ "groupName": "text", "groupSID": "text" }'
No body
Remove the specified group filter from the Theme
curl -L \ --request DELETE \ --url '/api/Theme/{id}/GroupFilter' \ --header 'Content-Type: application/json; api-version=1.0' \ --data '{ "groupName": "text", "groupSID": "text" }'