POST global/PostSettingData
Request Information
URI Parameters
None.
Body Parameters
SettingDataInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Guid | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| TextValue | string |
None. |
|
| NumericValue | decimal number |
None. |
|
| DateValue | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Guid": "8403bd11-2476-45e0-8a80-8b18a61842ba",
"Code": "sample string 2",
"TextValue": "sample string 3",
"NumericValue": 1.0,
"DateValue": "2026-04-14T21:30:42.6129348+02:00"
}
application/xml, text/xml
Sample:
<SettingDataInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestApi.Models.Inputs"> <Code>sample string 2</Code> <DateValue>2026-04-14T21:30:42.6129348+02:00</DateValue> <Guid>8403bd11-2476-45e0-8a80-8b18a61842ba</Guid> <Id>1</Id> <NumericValue>1</NumericValue> <TextValue>sample string 3</TextValue> </SettingDataInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |