PUT global/PutSettingData
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": "be6b8986-754d-48ac-a222-78e9de9ae59c",
"Code": "sample string 2",
"TextValue": "sample string 3",
"NumericValue": 1.0,
"DateValue": "2026-02-18T15:03:13.0791469+01: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-02-18T15:03:13.0791469+01:00</DateValue> <Guid>be6b8986-754d-48ac-a222-78e9de9ae59c</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. |