POST api/Display/OnChangeFractionShortcut
Request Information
URI Parameters
None.
Body Parameters
BlobSettingDtoName | 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
ResultViewModelName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "success": true, "message": "sample string 2" }
application/xml, text/xml
Sample:
<ResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <Message>sample string 2</Message> <Success>true</Success> </ResultViewModel>