POST api/NotesDataInsert

Request Information

URI Parameters

None.

Body Parameters

Collection of JsonNotes
NameDescriptionTypeAdditional information
DateCreated

date

None.

Branch

integer

None.

CompanyID

integer

None.

Deleted

integer

None.

NoteID

integer

None.

PatientID

integer

None.

PrimaryID

integer

None.

UserID

integer

None.

Note

string

None.

Table

string

None.

Type

string

None.

UserData

Collection of UserData

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "DateCreated": "2026-02-06T13:48:36.5822022+02:00",
    "Branch": 2,
    "CompanyID": 3,
    "Deleted": 4,
    "NoteID": 5,
    "PatientID": 6,
    "PrimaryID": 7,
    "UserID": 8,
    "Note": "sample string 9",
    "Table": "sample string 10",
    "Type": "sample string 11",
    "UserData": [
      {
        "UserKey": "sample string 1",
        "CompanyKey": "sample string 2",
        "SessionKey": "sample string 3",
        "PatientKey": "sample string 4"
      },
      {
        "UserKey": "sample string 1",
        "CompanyKey": "sample string 2",
        "SessionKey": "sample string 3",
        "PatientKey": "sample string 4"
      }
    ]
  },
  {
    "DateCreated": "2026-02-06T13:48:36.5822022+02:00",
    "Branch": 2,
    "CompanyID": 3,
    "Deleted": 4,
    "NoteID": 5,
    "PatientID": 6,
    "PrimaryID": 7,
    "UserID": 8,
    "Note": "sample string 9",
    "Table": "sample string 10",
    "Type": "sample string 11",
    "UserData": [
      {
        "UserKey": "sample string 1",
        "CompanyKey": "sample string 2",
        "SessionKey": "sample string 3",
        "PatientKey": "sample string 4"
      },
      {
        "UserKey": "sample string 1",
        "CompanyKey": "sample string 2",
        "SessionKey": "sample string 3",
        "PatientKey": "sample string 4"
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfJsonNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Heardat_API.Models">
  <JsonNotes>
    <Branch>2</Branch>
    <CompanyID>3</CompanyID>
    <DateCreated>2026-02-06T13:48:36.5822022+02:00</DateCreated>
    <Deleted>4</Deleted>
    <Note>sample string 9</Note>
    <NoteID>5</NoteID>
    <PatientID>6</PatientID>
    <PrimaryID>7</PrimaryID>
    <Table>sample string 10</Table>
    <Type>sample string 11</Type>
    <UserDataList>
      <UserData>
        <CompanyKey>sample string 2</CompanyKey>
        <PatientKey>sample string 4</PatientKey>
        <SessionKey>sample string 3</SessionKey>
        <UserKey>sample string 1</UserKey>
      </UserData>
      <UserData>
        <CompanyKey>sample string 2</CompanyKey>
        <PatientKey>sample string 4</PatientKey>
        <SessionKey>sample string 3</SessionKey>
        <UserKey>sample string 1</UserKey>
      </UserData>
    </UserDataList>
    <UserID>8</UserID>
  </JsonNotes>
  <JsonNotes>
    <Branch>2</Branch>
    <CompanyID>3</CompanyID>
    <DateCreated>2026-02-06T13:48:36.5822022+02:00</DateCreated>
    <Deleted>4</Deleted>
    <Note>sample string 9</Note>
    <NoteID>5</NoteID>
    <PatientID>6</PatientID>
    <PrimaryID>7</PrimaryID>
    <Table>sample string 10</Table>
    <Type>sample string 11</Type>
    <UserDataList>
      <UserData>
        <CompanyKey>sample string 2</CompanyKey>
        <PatientKey>sample string 4</PatientKey>
        <SessionKey>sample string 3</SessionKey>
        <UserKey>sample string 1</UserKey>
      </UserData>
      <UserData>
        <CompanyKey>sample string 2</CompanyKey>
        <PatientKey>sample string 4</PatientKey>
        <SessionKey>sample string 3</SessionKey>
        <UserKey>sample string 1</UserKey>
      </UserData>
    </UserDataList>
    <UserID>8</UserID>
  </JsonNotes>
</ArrayOfJsonNotes>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.