POST api/configurations/update-by-code
Request Information
URI Parameters
None.
Body Parameters
ConfigurationData| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
|
| Type | string |
None. |
|
| Value | string |
None. |
|
| ID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": "8bb1659f-2a15-40fc-a29a-b7162aa7f217",
"Code": "sample string 1",
"Description": "sample string 2",
"Type": "sample string 3",
"Value": "sample string 4",
"ID": 1
}
text/xml
Sample:
<ConfigurationData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data"> <ID>1</ID> <Code>sample string 1</Code> <Description>sample string 2</Description> <Type>sample string 3</Type> <UserID>8bb1659f-2a15-40fc-a29a-b7162aa7f217</UserID> <Value>sample string 4</Value> </ConfigurationData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.