DELETE api/Admin/Config?name={name}
Deletes a Configuration setting from the database with the matching name
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Name of the Configuration setting to delete |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
True if successful
DeleteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
Was it successful or not |
boolean |
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:
{
"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:45:01.3660387+10:00",
"BuildDateUTC": "2025-11-09T21:45:01.3660387+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
},
"Success": true
}