POST api/DEW/SaveProperty
Request Information
URI Parameters
None.
Body Parameters
SavePropertyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| PropertyName | string |
None. |
|
| PropertyValue | string |
None. |
|
| SessionNum | integer |
None. |
|
| SessionPassword | Collection of byte |
None. |
|
| ApplicationCode | string |
None. |
|
| StagesURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"PropertyName": "sample string 2",
"PropertyValue": "sample string 3",
"SessionNum": 4,
"SessionPassword": "QEA=",
"ApplicationCode": "sample string 5",
"StagesURL": "sample string 6"
}
application/xml, text/xml
Sample:
<SavePropertyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <StagesURL>sample string 6</StagesURL> <ApplicationCode>sample string 5</ApplicationCode> <SessionNum>4</SessionNum> <SessionPassword>QEA=</SessionPassword> <PropertyName>sample string 2</PropertyName> <PropertyValue>sample string 3</PropertyValue> <UserName>sample string 1</UserName> </SavePropertyRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SavePropertyResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| USP | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessage": "sample string 2",
"USP": 3
}
application/xml, text/xml
Sample:
<SavePropertyResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <ErrorMessage>sample string 2</ErrorMessage> <Success>true</Success> <USP>3</USP> </SavePropertyResult>