GET CaseExport/GetCaseNumbersWithStatusOfAllCasesBookedRecently?minutes={minutes}
Get CaseNumbers and current status information of all cases and have a recent status booking not older than x minutes
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
minutes |
defines recent - look back x minutes |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Enumeration of CaseNumber and current Status of Servicecase
Collection of InitPro.Ida.Web.Api.Dto.Export.CaseNumberStatusName | Description | Type | Additional information |
---|---|---|---|
CaseId |
internal id of Servicecase |
integer |
None. |
CaseNumber |
CaseNumber of your Servicecase |
string |
None. |
StatusId |
internal Id of Status |
integer |
None. |
Status |
current Status of your Servicecase |
string |
None. |
StatusKey |
Status Key you mapped to this Status |
string |
None. |
Store |
Current Store |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CaseId": 0, "CaseNumber": "500-LA0-000110", "StatusId": 0, "Status": "Unit Received", "StatusKey": "received", "Store": null }, { "CaseId": 0, "CaseNumber": "500-BA0-000112", "StatusId": 0, "Status": "Incoming", "StatusKey": null, "Store": null }, { "CaseId": 0, "CaseNumber": "500-LA0-000117", "StatusId": 0, "Status": "Unit Received", "StatusKey": "received", "Store": null } ]
application/xml, text/xml
Sample:
<ArrayOfCaseNumberStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto.Export"> <CaseNumberStatus> <CaseId>0</CaseId> <CaseNumber>500-LA0-000110</CaseNumber> <Status>Unit Received</Status> <StatusId>0</StatusId> <StatusKey>received</StatusKey> <Store i:nil="true" /> </CaseNumberStatus> <CaseNumberStatus> <CaseId>0</CaseId> <CaseNumber>500-BA0-000112</CaseNumber> <Status>Incoming</Status> <StatusId>0</StatusId> <StatusKey i:nil="true" /> <Store i:nil="true" /> </CaseNumberStatus> <CaseNumberStatus> <CaseId>0</CaseId> <CaseNumber>500-LA0-000117</CaseNumber> <Status>Unit Received</Status> <StatusId>0</StatusId> <StatusKey>received</StatusKey> <Store i:nil="true" /> </CaseNumberStatus> </ArrayOfCaseNumberStatus>