Create a partner note
| Parameter | Description | Additional information |
|---|---|---|
| model | The PartnerNoteModel object |
Define this parameter in the request body. |
| Number | Notes |
|---|---|
| #1 | PartnerID, Subject, and Note are all required fields. |
| Field Name | Notes |
|---|---|
| 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. |
{
"PartnerID": "sample string 1",
"EnteredBy": "sample string 2",
"DateEntered": "2025-10-27T06:47:30.6885411-06:00",
"Subject": "sample string 3",
"Type": "sample string 4",
"Private": true,
"Note": "sample string 6"
}
<PartnerNoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models"> <DateEntered>2025-10-27T06:47:30.6885411-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>