POST api/Customer/CustomerNote/{customerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerID | integer |
Required |
Body Parameters
CustomerNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerNoteID | integer |
None. |
|
| NoteDate | date |
None. |
|
| Subject | string |
None. |
|
| Details | string |
None. |
|
| EnteredBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerNoteID": 1,
"noteDate": "2025-12-09T23:07:40.2402422-05:00",
"subject": "sample string 2",
"details": "sample string 3",
"enteredBy": "sample string 4"
}
application/xml, text/xml
Sample:
<CustomerNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels"> <CustomerNoteID>1</CustomerNoteID> <Details>sample string 3</Details> <EnteredBy>sample string 4</EnteredBy> <NoteDate>2025-12-09T23:07:40.2402422-05:00</NoteDate> <Subject>sample string 2</Subject> </CustomerNoteViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.