GET api/Notes/{id}

Returns the notes of the specified recording ID.

Request Information

Parameters

NameDescriptionAdditional information
id
The recording ID.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Content": "sample string 1",
    "Tracking": "sample string 2"
  },
  {
    "Content": "sample string 1",
    "Tracking": "sample string 2"
  },
  {
    "Content": "sample string 1",
    "Tracking": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RecordiaIntegrationWS.Models">
  <Note>
    <Content>sample string 1</Content>
    <Tracking>sample string 2</Tracking>
  </Note>
  <Note>
    <Content>sample string 1</Content>
    <Tracking>sample string 2</Tracking>
  </Note>
  <Note>
    <Content>sample string 1</Content>
    <Tracking>sample string 2</Tracking>
  </Note>
</ArrayOfNote>