POST api/ConfiguredAlert
Creates a new instance of an ConfiguredAlert in the database.
Request Information
URI Parameters
None.
Body Parameters
The model to use
AddUpdate_ConfiguredAlert| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Enabled | boolean |
None. |
|
| OwnerID | integer |
None. |
|
| OwnerType | OwnerType |
None. |
|
| AlertType | AlertType |
None. |
|
| MaxRepeats | integer |
None. |
|
| WaitTime | integer |
None. |
|
| Type | ConfiguredAlertType |
None. |
|
| CheckInControlled | boolean |
None. |
|
| ID | integer |
None. |
|
| Enabled | boolean |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| AlertType | AlertType |
None. |
|
| MaxRepeats | integer |
None. |
|
| WaitTime | integer |
None. |
|
| OwnerID | integer |
None. |
|
| OwnerType | OwnerType |
None. |
|
| Type | ConfiguredAlertType |
None. |
|
| CheckInControlled | boolean |
None. |
Request Formats
application/json, text/json, text/html
Sample:
{
"ID": 1,
"Enabled": true,
"OwnerID": 1,
"OwnerType": 10,
"AlertType": 0,
"MaxRepeats": 1,
"WaitTime": 1,
"Type": 0,
"CheckInControlled": true,
"Name": "sample string 3",
"Description": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Http Status code indicating result.
GetConfiguredAlertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ConfiguredAlerts |
Array of Configured Alerts |
Collection of ConfiguredAlert |
None. |
| Messages |
Array of messages |
Collection of Message |
None. |
| ServerInformation |
Relevant information regarding the Server |
ServerInformation |
None. |
| VersionInformation |
Relevant information regarding the API's version |
VersionInformation |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"ConfiguredAlerts": [
{
"ID": 1,
"Enabled": true,
"Name": "sample string 3",
"Description": "sample string 4",
"AlertType": 0,
"MaxRepeats": 5,
"WaitTime": 6,
"OwnerID": 7,
"OwnerType": 10,
"Type": 0,
"CheckInControlled": true
},
{
"ID": 1,
"Enabled": true,
"Name": "sample string 3",
"Description": "sample string 4",
"AlertType": 0,
"MaxRepeats": 5,
"WaitTime": 6,
"OwnerID": 7,
"OwnerType": 10,
"Type": 0,
"CheckInControlled": true
}
],
"Messages": [
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
},
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
}
],
"ServerInformation": {
"CurrentTimeUTC": "2025-11-09T21:24:38.4627582+10:00",
"BuildDateUTC": "2025-11-09T21:24:38.4627582+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
}
}