POST api/appvalues/update
Request Information
URI Parameters
None.
Body Parameters
AppValues| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| ValueKey | string |
None. |
|
| ValueInt | integer |
None. |
|
| ValueDecimal | decimal number |
None. |
|
| ValueNVarchar | string |
None. |
|
| ValueDatetime | date |
None. |
|
| ValueBit | boolean |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "64e0f7bb-f53e-4c12-accb-27859bdb4511",
"ValueKey": "sample string 3",
"ValueInt": 1,
"ValueDecimal": 1.0,
"ValueNVarchar": "sample string 4",
"ValueDatetime": "2026-01-16T18:14:11.4196808+01:00",
"ValueBit": true,
"Description": "sample string 5"
}
application/xml, text/xml
Sample:
<AppValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Description>sample string 5</Description> <Id>1</Id> <RowGuid>64e0f7bb-f53e-4c12-accb-27859bdb4511</RowGuid> <ValueBit>true</ValueBit> <ValueDatetime>2026-01-16T18:14:11.4196808+01:00</ValueDatetime> <ValueDecimal>1</ValueDecimal> <ValueInt>1</ValueInt> <ValueKey>sample string 3</ValueKey> <ValueNVarchar>sample string 4</ValueNVarchar> </AppValues>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AppValuesDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| ValueKey | string |
None. |
|
| ValueInt | integer |
None. |
|
| ValueDecimal | decimal number |
None. |
|
| ValueNVarchar | string |
None. |
|
| ValueDatetime | date |
None. |
|
| ValueBit | boolean |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "2f2adf73-71b7-42de-9f37-cb223674668c",
"ValueKey": "sample string 3",
"ValueInt": 1,
"ValueDecimal": 1.0,
"ValueNVarchar": "sample string 4",
"ValueDatetime": "2026-01-16T18:14:11.4266816+01:00",
"ValueBit": true,
"Description": "sample string 5"
}
application/xml, text/xml
Sample:
<AppValuesDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Description>sample string 5</Description> <Id>1</Id> <RowGuid>2f2adf73-71b7-42de-9f37-cb223674668c</RowGuid> <ValueBit>true</ValueBit> <ValueDatetime>2026-01-16T18:14:11.4266816+01:00</ValueDatetime> <ValueDecimal>1</ValueDecimal> <ValueInt>1</ValueInt> <ValueKey>sample string 3</ValueKey> <ValueNVarchar>sample string 4</ValueNVarchar> </AppValuesDisplay>