POST api/ContactBrokerNotes?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | integer |
Required |
Body Parameters
LocalNote| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddress | string |
None. |
|
| Message | string |
None. |
|
| Subject | string |
None. |
|
| IsHtml | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmailAddress": "sample string 1",
"Message": "sample string 2",
"Subject": "sample string 3",
"IsHtml": true
}
text/html
Sample:
{"EmailAddress":"sample string 1","Message":"sample string 2","Subject":"sample string 3","IsHtml":true}
application/xml, text/xml
Sample:
<LocalNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRealtyMedia.Services.FollowUpBoss.Models"> <EmailAddress>sample string 1</EmailAddress> <IsHtml>true</IsHtml> <Message>sample string 2</Message> <Subject>sample string 3</Subject> </LocalNote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>