Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| queueViewId |
The queue view identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The specified queue view.
Pico.QueueView| Name | Description | Type | Additional information |
|---|---|---|---|
| organization |
Gets or sets the organization identifier. |
integer |
None. |
| id |
Gets or sets the queue view identifier. |
integer |
None. |
| user |
Gets or sets the user identifier. |
integer |
None. |
| columns |
Gets or sets the columns. |
string |
None. |
| definition |
Gets or sets the definition. |
string |
None. |
| description |
Gets or sets the description. |
string |
None. |
| filterBy |
Gets or sets the filter by. |
string |
None. |
| groupBy |
Gets or sets the group by. |
string |
None. |
| isActive |
Gets or sets a value indicating whether this is active. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"organization": "1",
"id": "1",
"user": "1",
"columns": "sample String 2",
"definition": "sample String 3",
"description": "sample String 4",
"filterBy": "sample String 5",
"groupBy": "sample String 6",
"isActive": true
}
text/html
Sample:
{"organization":"1","id":"1","user":"1","columns":"sample String 2","definition":"sample String 3","description":"sample String 4","filterBy":"sample String 5","groupBy":"sample String 6","isActive":true}
application/xml, text/xml
Sample:
<QueueView xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OrganizationId>1</OrganizationId> <QueueViewId>1</QueueViewId> <UserId>1</UserId> <Columns>sample String 2</Columns> <Definition>sample String 3</Definition> <Description>sample String 4</Description> <FilterBy>sample String 5</FilterBy> <GroupBy>sample String 6</GroupBy> <IsActive>true</IsActive> </QueueView>