Group Filter

Get

get

Retrieve the group filters from the Theme

Path parameters
idinteger · int32Required

Theme ID.

Responses
200
Success
application/json; api-version=1.0
get
GET /api/Theme/{id}/GroupFilter HTTP/1.1
Host: 
Accept: */*
[
  {
    "name": "text",
    "sid": "text"
  }
]

Add

post

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
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

Delete

delete

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
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?