POST api/Invoice/UpdateCustomerNotesById
Request Information
URI Parameters
None.
Body Parameters
CustomerNotesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerNotesID | integer |
None. |
|
| CustomerID | integer |
None. |
|
| Notes | string |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedByName | string |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedBy | integer |
None. |
|
| ModifiedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerNotesID": 1,
"CustomerID": 2,
"Notes": "sample string 3",
"CreatedBy": 4,
"CreatedByName": "sample string 5",
"CreatedDate": "2021-02-24T12:57:17.3664177+11:00",
"ModifiedBy": 7,
"ModifiedDate": "2021-02-24T12:57:17.3664177+11:00"
}
application/xml, text/xml
Sample:
<CustomerNotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TARWebAPI.Models"> <CreatedBy>4</CreatedBy> <CreatedByName>sample string 5</CreatedByName> <CreatedDate>2021-02-24T12:57:17.3664177+11:00</CreatedDate> <CustomerID>2</CustomerID> <CustomerNotesID>1</CustomerNotesID> <ModifiedBy>7</ModifiedBy> <ModifiedDate>2021-02-24T12:57:17.3664177+11:00</ModifiedDate> <Notes>sample string 3</Notes> </CustomerNotesModel>
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.