POST api/alert/Save
Request Information
URI Parameters
None.
Body Parameters
AlertModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AlertID | integer |
None. |
|
| VisualAlertID | integer |
None. |
|
| AccountID | integer |
None. |
|
| WorkflowLineID | integer |
None. |
|
| IsOpen | boolean |
None. |
|
| AlertNote | string |
None. |
|
| StatusID | integer |
None. |
|
| CreateID | integer |
None. |
|
| CreateSessionID | integer |
None. |
|
| CreateTS | date |
None. |
|
| ModifyID | integer |
None. |
|
| ModifySessionID | integer |
None. |
|
| ModifyTS | date |
None. |
|
| InactiveID | integer |
None. |
|
| InactiveSessionID | integer |
None. |
|
| InactiveTS | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"AlertID": 1,
"VisualAlertID": 1,
"AccountID": 1,
"WorkflowLineID": 1,
"IsOpen": true,
"AlertNote": "sample string 3",
"StatusID": 1,
"CreateID": 1,
"CreateSessionID": 1,
"CreateTS": "2026-01-15T08:38:50.3459597+00:00",
"ModifyID": 1,
"ModifySessionID": 1,
"ModifyTS": "2026-01-15T08:38:50.3459597+00:00",
"InactiveID": 1,
"InactiveSessionID": 1,
"InactiveTS": "2026-01-15T08:38:50.3459597+00:00"
}
application/xml, text/xml
Sample:
<AlertModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Alert"> <AccountID>1</AccountID> <AlertID>1</AlertID> <AlertNote>sample string 3</AlertNote> <CreateID>1</CreateID> <CreateSessionID>1</CreateSessionID> <CreateTS>2026-01-15T08:38:50.3459597+00:00</CreateTS> <InactiveID>1</InactiveID> <InactiveSessionID>1</InactiveSessionID> <InactiveTS>2026-01-15T08:38:50.3459597+00:00</InactiveTS> <IsOpen>true</IsOpen> <ModifyID>1</ModifyID> <ModifySessionID>1</ModifySessionID> <ModifyTS>2026-01-15T08:38:50.3459597+00:00</ModifyTS> <StatusID>1</StatusID> <VisualAlertID>1</VisualAlertID> <WorkflowLineID>1</WorkflowLineID> </AlertModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ActionResultVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": null
}
application/xml, text/xml
Sample:
<ActionResultVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels"> <Response i:nil="true" /> </ActionResultVM>