POST api/v1/SystemConstants/Many
Request Information
URI Parameters
None.
Body Parameters
AddSystemConstantsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| SystemConstants | Collection of SystemConstantDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"SystemConstants": [
{
"Name": "sample string 1",
"Value": "sample string 2",
"CreateTime": "2025-12-06T07:29:43.8050146+03:00",
"UpdateTime": "2025-12-06T07:29:43.8050146+03:00"
},
{
"Name": "sample string 1",
"Value": "sample string 2",
"CreateTime": "2025-12-06T07:29:43.8050146+03:00",
"UpdateTime": "2025-12-06T07:29:43.8050146+03:00"
}
]
}
application/xml, text/xml
Sample:
<AddSystemConstantsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Settings.Contracts">
<SystemConstants>
<SystemConstantDTO>
<CreateTime>2025-12-06T07:29:43.8050146+03:00</CreateTime>
<Name>sample string 1</Name>
<UpdateTime>2025-12-06T07:29:43.8050146+03:00</UpdateTime>
<Value>sample string 2</Value>
</SystemConstantDTO>
<SystemConstantDTO>
<CreateTime>2025-12-06T07:29:43.8050146+03:00</CreateTime>
<Name>sample string 1</Name>
<UpdateTime>2025-12-06T07:29:43.8050146+03:00</UpdateTime>
<Value>sample string 2</Value>
</SystemConstantDTO>
</SystemConstants>
</AddSystemConstantsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.