POST api/{context}/partnernote/Create

Create a partner note

Request Information

ParameterDescriptionAdditional information
model
The PartnerNoteModel object

Define this parameter in the request body.

Requirements

NumberNotes
#1
PartnerID, Subject, and Note are all required fields.

Special Field Notes

Field NameNotes
DateEntered
Date Entered should generally be left empty, unless some prior date is intended.  The current time and day will be used automatically.
EnteredBy
If no name is provided, the value 'Web User' will be used automatically.
Type
Note Types are pre-defined and should be found via a prior look-up using the NoteTypes GET method. Passing an invalid value here will result in nothing being set for this note.

Request body formats

application/json, text/json

Sample:
{
  "PartnerID": "sample string 1",
  "EnteredBy": "sample string 2",
  "DateEntered": "2024-05-01T15:43:38.9896987-06:00",
  "Subject": "sample string 3",
  "Type": "sample string 4",
  "Private": true,
  "Note": "sample string 6"
}

application/xml, text/xml

Sample:
<PartnerNoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <DateEntered>2024-05-01T15:43:38.9896987-06:00</DateEntered>
  <EnteredBy>sample string 2</EnteredBy>
  <Note>sample string 6</Note>
  <PartnerID>sample string 1</PartnerID>
  <Private>true</Private>
  <Subject>sample string 3</Subject>
  <Type>sample string 4</Type>
</PartnerNoteModel>