POST v1/CustomerNotes

Documentation for 'Post'.

Request Information

Parameters

NameDescriptionAdditional information
entity
Documentation for 'entity'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
Click to beautify!
{
  "customerId": 1,
  "note": "sample string 2",
  "editable": true,
  "sourceApplication": "sample string 3"
}

application/xml, text/xml

Sample:
Click to beautify!
<CustomerNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Dto.Post">
  <CustomerId>1</CustomerId>
  <Editable>true</Editable>
  <Note>sample string 2</Note>
  <SourceApplication>sample string 3</SourceApplication>
</CustomerNote>

application/x-www-form-urlencoded

Sample:
Click to beautify!

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
Click to beautify!
{
  "userWhoCreatedNote": "sample string 1",
  "note": "sample string 2",
  "sourceApplication": "sample string 3",
  "createdTimestamp": "2024-05-03T08:26:28.261698+00:00",
  "modifiedTimestamp": "2024-05-03T08:26:28.261698+00:00",
  "editable": true,
  "customerId": 7,
  "id": 8,
  "uri": "sample string 9"
}

application/xml, text/xml

Sample:
Click to beautify!
<CustomerNoteSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Dto.Get">
  <Id>8</Id>
  <Uri>sample string 9</Uri>
  <CreatedTimestamp>2024-05-03T08:26:28.261698+00:00</CreatedTimestamp>
  <CustomerId>7</CustomerId>
  <Editable>true</Editable>
  <ModifiedTimestamp>2024-05-03T08:26:28.261698+00:00</ModifiedTimestamp>
  <Note>sample string 2</Note>
  <SourceApplication>sample string 3</SourceApplication>
  <UserWhoCreatedNote>sample string 1</UserWhoCreatedNote>
</CustomerNoteSummary>