POST api/Customer/AddNote
Adds a note into the customer.
Request Information
URI Parameters
None.
Body Parameters
AddCustomerNotePostName | Description | Type | Additional information |
---|---|---|---|
Text |
(Required) The text |
string |
None. |
CustomerId |
Adds note into customer with this customer id. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Text": "Everything else", "CustomerId": 1 }
application/xml, text/xml
Sample:
<AddCustomerNotePost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts"> <CustomerId>1</CustomerId> <Text>Everything else</Text> </AddCustomerNotePost>
Response Information
Resource Description
IHttpActionResultNone.