Themes
Retrieve Criteria Theme List of a session server with the specified ID.
Path parameters
idinteger · int32Required
The ID of a session server for which to retrieve the Criteria settings.
Responses
200
Success
application/json; api-version=1.0
Responseinteger · int32[]
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/LogonHours/{id}/Criteria/Themes HTTP/1.1
Host:
Accept: */*
[
1
]
Add a theme to the Theme List of the Criteria settings.
Path parameters
idinteger · int32Required
The ID of a session server for which to modify the Criteria settings.
Body
Add a theme to the Criteria Themes list
themeNamestring | nullableOptional
The name of the theme to add to the Criteria.
themeIdinteger · int32 | nullableOptional
The ID of the theme to add to the Criteria.
Responses
201
Created
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
409
Conflict
application/json; api-version=1.0
post
POST /api/LogonHours/{id}/Criteria/Themes HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 32
{
"themeName": "text",
"themeId": 1
}
No content
Remove a theme from the Theme List of the Criteria settings.
Path parameters
idinteger · int32Required
The ID of a session server for which to modify the Criteria settings.
Body
Remove a theme from the Criteria Themes list
themeIdinteger · int32 | nullableRequired
The ID of the theme to remove from the Criteria.
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
delete
DELETE /api/LogonHours/{id}/Criteria/Themes HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 13
{
"themeId": 1
}
No content
Was this helpful?