POST notes/addnotesoutcomes

Request Information

URI Parameters

None.

Body Parameters

NoteOutcomeEntity
NameDescriptionTypeAdditional information
OutcomeId

integer

None.

Outcome

string

None.

Active

boolean

None.

IsCompleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "OutcomeId": 1,
  "Outcome": "sample string 2",
  "Active": true,
  "IsCompleted": true
}

text/html

Sample:
{"OutcomeId":1,"Outcome":"sample string 2","Active":true,"IsCompleted":true}

application/xml, text/xml

Sample:
<NoteOutcomeEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Notes">
  <Active>true</Active>
  <IsCompleted>true</IsCompleted>
  <Outcome>sample string 2</Outcome>
  <OutcomeId>1</OutcomeId>
</NoteOutcomeEntity>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'NoteOutcomeEntity'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.