POST api/Customer/UpdateNote/{id}

Updates the note's information

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

note id

integer

Required

Body Parameters

UpdateCustomerNotePost
NameDescriptionTypeAdditional information
Text

(Required) The text

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Text": "Everything else"
}

application/xml, text/xml

Sample:
<UpdateCustomerNotePost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <Text>Everything else</Text>
</UpdateCustomerNotePost>

Response Information

Resource Description

IHttpActionResult

None.