POST api/Display/UpdateDisplaySetting
Request Information
URI Parameters
None.
Body Parameters
BlobSettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyId | integer |
None. |
|
| PropertyName | string |
None. |
|
| PropertyValue | string |
None. |
|
| BlobType | integer |
None. |
|
| Column | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"propertyId": 1,
"propertyName": "sample string 2",
"propertyValue": "sample string 3",
"blobType": 4,
"column": "sample string 5"
}
application/xml, text/xml
Sample:
<BlobSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto"> <BlobType>4</BlobType> <Column>sample string 5</Column> <PropertyId>1</PropertyId> <PropertyName>sample string 2</PropertyName> <PropertyValue>sample string 3</PropertyValue> </BlobSettingDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>