Displayprofile
Display Settings
Search this users Display Profiles
Filter by DisplayProfile Id
Filter by DisplayProfile Name
Filter by DisplayProfile Type (windows|android|linux|lg|sssp|chromeOS|hisense)
Embed related data such as config,commands,configWithDefault
Specifies which field the results are sorted by. Used together with sortDir
Sort direction
successful operation
GET /api/displayprofile HTTP/1.1
Accept: */*
successful operation
[
{
"displayProfileId": 1,
"name": "text",
"type": "text",
"config": [
"text"
],
"isDefault": 1,
"userId": 1,
"configDefault": [
"text"
]
}
]Add a Display Profile
The Name of the Display Profile
The Client Type this Profile will apply to
Flag indicating if this is the default profile for the client type
successful operation
POST /api/displayprofile HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 43
"name='text'&type='text'&isDefault=1"successful operation
{
"displayProfileId": 1,
"name": "text",
"type": "text",
"config": [
"text"
],
"isDefault": 1,
"userId": 1,
"configDefault": [
"text"
]
}Get the Display Profile object specified by the provided displayProfileId
Numeric ID of the Display Profile to get
successful operation
Class DisplayProfile
The ID of this Display Profile
The name of this Display Profile
The player type that this Display Profile is for
The configuration options for this Profile
A flag indicating if this profile should be used as the Default for the client type
The userId of the User that owns this profile
The default configuration options for this Profile
GET /api/displayprofile/{id} HTTP/1.1
Accept: */*
successful operation
{
"displayProfileId": 1,
"name": "text",
"type": "text",
"config": [
"text"
],
"isDefault": 1,
"userId": 1,
"configDefault": [
"text"
]
}Edit a Display Profile
The Display Profile ID
The Name of the Display Profile
The Client Type this Profile will apply to
Flag indicating if this is the default profile for the client type
successful operation
No content
PUT /api/displayprofile/{displayProfileId} HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 43
"name='text'&type='text'&isDefault=1"successful operation
No content
Delete an existing Display Profile
The Display Profile ID
successful operation
No content
DELETE /api/displayprofile/{displayProfileId} HTTP/1.1
Accept: */*
successful operation
No content
Copy an existing Display Profile
The Display Profile ID
The name for the copy
successful operation
POST /api/displayprofile/{displayProfileId}/copy HTTP/1.1
Accept: */*
successful operation
{
"displayProfileId": 1,
"name": "text",
"type": "text",
"config": [
"text"
],
"isDefault": 1,
"userId": 1,
"configDefault": [
"text"
]
}Last updated
Was this helpful?

