POST api/BasicAPI/GetMyNotes

Request Information

URI Parameters

None.

Body Parameters

GetMyNotesRequest
NameDescriptionTypeAdditional information
UserId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1"
}

application/xml, text/xml

Sample:
<GetMyNotesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StatCom26082020.ContextModel">
  <UserId>sample string 1</UserId>
</GetMyNotesRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetMyNotesResponse
NameDescriptionTypeAdditional information
Data

DataOfGetMyNotes

None.

ReturnCode

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "MyNotes": [
      {
        "NoteId": "sample string 1",
        "PatientName": "sample string 2",
        "Description": "sample string 3",
        "Image": "sample string 4",
        "DOA": "sample string 5",
        "SharedWith": [
          "sample string 1",
          "sample string 2"
        ]
      },
      {
        "NoteId": "sample string 1",
        "PatientName": "sample string 2",
        "Description": "sample string 3",
        "Image": "sample string 4",
        "DOA": "sample string 5",
        "SharedWith": [
          "sample string 1",
          "sample string 2"
        ]
      }
    ]
  },
  "ReturnCode": "sample string 1",
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<GetMyNotesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StatCom26082020.ContextModel">
  <Description>sample string 2</Description>
  <ReturnCode>sample string 1</ReturnCode>
  <Data>
    <MyNotes>
      <MyNotes>
        <DOA>sample string 5</DOA>
        <Description>sample string 3</Description>
        <Image>sample string 4</Image>
        <NoteId>sample string 1</NoteId>
        <PatientName>sample string 2</PatientName>
        <SharedWith xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </SharedWith>
      </MyNotes>
      <MyNotes>
        <DOA>sample string 5</DOA>
        <Description>sample string 3</Description>
        <Image>sample string 4</Image>
        <NoteId>sample string 1</NoteId>
        <PatientName>sample string 2</PatientName>
        <SharedWith xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </SharedWith>
      </MyNotes>
    </MyNotes>
  </Data>
</GetMyNotesResponse>