GET v1/company/{companyId}/tickets?Start={Start}&Count={Count}&Search={Search}
Get tickets for a company
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId |
Company id |
decimal number |
Required |
| Start |
How many record wants to skip |
integer |
None. |
| Count |
How many record wants to retrieve |
integer |
None. |
| Search |
Filter the result set |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
ApiResponseListOfAppTicketMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Count | integer |
None. |
|
| Result | Collection of AppTicketMaster |
None. |
|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| Errors |
Errors occures while processing request |
Collection of ApiError |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": 1,
"Result": [
{
"Id": 1,
"TicketId": 2,
"Subject": "sample string 3",
"Message": "sample string 4",
"Attachment": "sample string 5",
"IsAttachment": true,
"Status": "sample string 6",
"DateOfCreation": "sample string 7",
"LastUpdatedOn": "sample string 8",
"SenderName": "sample string 9"
},
{
"Id": 1,
"TicketId": 2,
"Subject": "sample string 3",
"Message": "sample string 4",
"Attachment": "sample string 5",
"IsAttachment": true,
"Status": "sample string 6",
"DateOfCreation": "sample string 7",
"LastUpdatedOn": "sample string 8",
"SenderName": "sample string 9"
}
],
"Status": true,
"Message": "sample string 3",
"Errors": [
{
"Number": 1,
"Message": "sample string 2",
"Exception": {
"ClassName": "System.Exception",
"Message": null,
"Data": null,
"InnerException": null,
"HelpURL": "sample string 1",
"StackTraceString": null,
"RemoteStackTraceString": null,
"RemoteStackIndex": 0,
"ExceptionMethod": null,
"HResult": 3,
"Source": "sample string 2",
"WatsonBuckets": null
}
},
{
"Number": 1,
"Message": "sample string 2",
"Exception": {
"ClassName": "System.Exception",
"Message": null,
"Data": null,
"InnerException": null,
"HelpURL": "sample string 1",
"StackTraceString": null,
"RemoteStackTraceString": null,
"RemoteStackIndex": 0,
"ExceptionMethod": null,
"HResult": 3,
"Source": "sample string 2",
"WatsonBuckets": null
}
}
]
}