POST api/ContactBrokerNotes?siteId={siteId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

integer

Required

Body Parameters

LocalNote
NameDescriptionTypeAdditional 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

boolean

Response 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>