GET api/alert/GetAlertSummaryByAccountID?accountID={accountID}&isOpen={isOpen}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountID | integer |
Required |
|
isOpen | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
AlertSummaryListVMName | Description | Type | Additional information |
---|---|---|---|
AlertSummaryList | Collection of AlertSummary |
None. |
|
NumberOfResults | integer |
None. |
|
Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{ "AlertSummaryList": [ { "AlertID": 1, "AlertNote": "sample string 2", "AccountID": 1, "WorkFlowLineID": 1, "CreateTS": "2025-09-02T23:06:52.0912246+00:00", "IsOpen": true, "Status": true }, { "AlertID": 1, "AlertNote": "sample string 2", "AccountID": 1, "WorkFlowLineID": 1, "CreateTS": "2025-09-02T23:06:52.0912246+00:00", "IsOpen": true, "Status": true } ], "NumberOfResults": 1, "Response": null }
application/xml, text/xml
Sample:
<AlertSummaryListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Alert"> <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" /> <AlertSummaryList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Alert"> <d2p1:AlertSummary> <d2p1:AccountID>1</d2p1:AccountID> <d2p1:AlertID>1</d2p1:AlertID> <d2p1:AlertNote>sample string 2</d2p1:AlertNote> <d2p1:CreateTS>2025-09-02T23:06:52.0912246+00:00</d2p1:CreateTS> <d2p1:IsOpen>true</d2p1:IsOpen> <d2p1:Status>true</d2p1:Status> <d2p1:WorkFlowLineID>1</d2p1:WorkFlowLineID> </d2p1:AlertSummary> <d2p1:AlertSummary> <d2p1:AccountID>1</d2p1:AccountID> <d2p1:AlertID>1</d2p1:AlertID> <d2p1:AlertNote>sample string 2</d2p1:AlertNote> <d2p1:CreateTS>2025-09-02T23:06:52.0912246+00:00</d2p1:CreateTS> <d2p1:IsOpen>true</d2p1:IsOpen> <d2p1:Status>true</d2p1:Status> <d2p1:WorkFlowLineID>1</d2p1:WorkFlowLineID> </d2p1:AlertSummary> </AlertSummaryList> <NumberOfResults>1</NumberOfResults> </AlertSummaryListVM>