POST api/Admin/Config

Creates a new Configuration settings in the database

Request Information

URI Parameters

None.

Body Parameters

Information on the Configuration Setting to create

ConfigurationSetting
NameDescriptionTypeAdditional information
Name

Name of the setting to change

string

None.

Value

Value to set it to

string

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "Name": "sample string 1",
  "Value": "sample string 2"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ConfigurationSetting'.

Response Information

Resource Description

Dictionary of configuration settings

GetDictionaryResponse
NameDescriptionTypeAdditional information
Collection

Dictionary of Key/Value pairs

Dictionary of string [key] and Object [value]

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": "2026-01-09T23:45:28.6131126+10:00",
    "BuildDateUTC": "2026-01-09T23:45:28.6131126+10:00"
  },
  "VersionInformation": {
    "Major": 1,
    "Minor": 8,
    "Hotfix": 0,
    "Beta": true,
    "Version": "1.8.0.BETA"
  },
  "Collection": {
    "sample string 1": {},
    "sample string 3": {}
  }
}