Resolution
Resolutions
Search Resolutions this user has access to
Filter by Resolution Id
Filter by Resolution Name
Flag (0,1). When filtering by multiple resolutions in resolution filter, should we use regex?
When filtering by multiple resolutions in resolution filter, which logical operator should be used? AND|OR
Filter by Enabled
Filter by Resolution width
Filter by Resolution height
Specifies which field the results are sorted by. Used together with sortDir
Sort direction
successful operation
GET /api/resolution HTTP/1.1
Accept: */*
successful operation
[
{
"resolutionId": 1,
"resolution": "text",
"width": 1,
"height": 1,
"designerWidth": 1,
"designerHeight": 1,
"version": 1,
"enabled": 1,
"userId": 1
}
]Add new Resolution
A name for the Resolution
The Display Width of the Resolution
The Display Height of the Resolution
successful operation
POST /api/resolution HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 42
"resolution='text'&width=1&height=1"successful operation
{
"resolutionId": 1,
"resolution": "text",
"width": 1,
"height": 1,
"designerWidth": 1,
"designerHeight": 1,
"version": 1,
"enabled": 1,
"userId": 1
}Get the Resolution object specified by the provided resolutionId
Numeric ID of the Resolution to get
successful operation
Class Resolution
The ID of this Resolution
The resolution name
The display width of the resolution
The display height of the resolution
The designer width of the resolution
The designer height of the resolution
The layout schema version
A flag indicating whether this resolution is enabled or not
The userId who owns this Resolution
GET /api/resolution/{resolutionId} HTTP/1.1
Accept: */*
successful operation
{
"resolutionId": 1,
"resolution": "text",
"width": 1,
"height": 1,
"designerWidth": 1,
"designerHeight": 1,
"version": 1,
"enabled": 1,
"userId": 1
}Edit new Resolution
The Resolution ID to Edit
A name for the Resolution
The Display Width of the Resolution
The Display Height of the Resolution
successful operation
Class Resolution
The ID of this Resolution
The resolution name
The display width of the resolution
The display height of the resolution
The designer width of the resolution
The designer height of the resolution
The layout schema version
A flag indicating whether this resolution is enabled or not
The userId who owns this Resolution
PUT /api/resolution/{resolutionId} HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 42
"resolution='text'&width=1&height=1"successful operation
{
"resolutionId": 1,
"resolution": "text",
"width": 1,
"height": 1,
"designerWidth": 1,
"designerHeight": 1,
"version": 1,
"enabled": 1,
"userId": 1
}Last updated
Was this helpful?

