POST api/User/SavePropertyCommunication
Request Information
URI Parameters
None.
Body Parameters
PropertyCommunicationSavingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| XUserId | integer |
None. |
|
| XUserTypeId | integer |
None. |
|
| XUserPropertyId | integer |
None. |
|
| ChatDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"XUserId": 1,
"XUserTypeId": 2,
"XUserPropertyId": 3,
"ChatDescription": "sample string 4"
}
application/xml, text/xml
Sample:
<PropertyCommunicationSavingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xacco.Models.Model"> <ChatDescription>sample string 4</ChatDescription> <XUserId>1</XUserId> <XUserPropertyId>3</XUserPropertyId> <XUserTypeId>2</XUserTypeId> </PropertyCommunicationSavingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>