GET v1/CustomerNotes/{id}

Documentation for 'Get'.

Request Information

Parameters

NameDescriptionAdditional information
id
Documentation for 'id'.

Define this parameter in the request URI.

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-03T06:57:31.2016867+00:00",
  "modifiedTimestamp": "2024-05-03T06:57:31.2016867+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-03T06:57:31.2016867+00:00</CreatedTimestamp>
  <CustomerId>7</CustomerId>
  <Editable>true</Editable>
  <ModifiedTimestamp>2024-05-03T06:57:31.2016867+00:00</ModifiedTimestamp>
  <Note>sample string 2</Note>
  <SourceApplication>sample string 3</SourceApplication>
  <UserWhoCreatedNote>sample string 1</UserWhoCreatedNote>
</CustomerNoteSummary>