POST api/journal/v3/save-notes

Request Information

URI Parameters

None.

Body Parameters

SaveChildNoteRequestModel
NameDescriptionTypeAdditional information
childids

string

None.

categoryid

string

None.

category_code

string

None.

notes

string

None.

time

string

None.

subcategoryid

string

None.

imageurl

Collection of string

None.

note_date

string

None.

staffonly

boolean

None.

temperature

string

None.

ounces_served

string

None.

mealType_Id

integer

None.

meal_item_id

integer

None.

nature_of_injury

string

None.

first_add_administered

string

None.

parent_notified

boolean

None.

staff_signature

string

None.

admin_signature

string

None.

parent_signature

string

None.

parent_staff_id

integer

None.

imageList

Collection of JournalImageList

None.

childObservationList

Collection of ChildObservation

None.

Request Formats

application/json, text/json

Sample:
{
  "childids": "sample string 1",
  "categoryid": "sample string 2",
  "category_code": "sample string 3",
  "notes": "sample string 4",
  "time": "sample string 5",
  "subcategoryid": "sample string 6",
  "imageurl": [
    "sample string 1",
    "sample string 2"
  ],
  "note_date": "sample string 7",
  "staffonly": true,
  "temperature": "sample string 9",
  "ounces_served": "sample string 10",
  "mealType_Id": 11,
  "meal_item_id": 12,
  "nature_of_injury": "sample string 13",
  "first_add_administered": "sample string 14",
  "parent_notified": true,
  "staff_signature": "sample string 16",
  "admin_signature": "sample string 17",
  "parent_signature": "sample string 18",
  "parent_staff_id": 19,
  "imageList": [
    {
      "ImageURL": "sample string 1",
      "ContentType": "sample string 2",
      "VideoURL": "sample string 3"
    },
    {
      "ImageURL": "sample string 1",
      "ContentType": "sample string 2",
      "VideoURL": "sample string 3"
    }
  ],
  "childObservationList": [
    {
      "Observation_Category_ID": 1,
      "Progress_Id": 2,
      "Child_Id": 3
    },
    {
      "Observation_Category_ID": 1,
      "Progress_Id": 2,
      "Child_Id": 3
    }
  ]
}

application/xml, text/xml

Sample:
<SaveChildNoteRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <admin_signature>sample string 17</admin_signature>
  <category_code>sample string 3</category_code>
  <categoryid>sample string 2</categoryid>
  <childObservationList>
    <ChildObservation>
      <Child_Id>3</Child_Id>
      <Observation_Category_ID>1</Observation_Category_ID>
      <Progress_Id>2</Progress_Id>
    </ChildObservation>
    <ChildObservation>
      <Child_Id>3</Child_Id>
      <Observation_Category_ID>1</Observation_Category_ID>
      <Progress_Id>2</Progress_Id>
    </ChildObservation>
  </childObservationList>
  <childids>sample string 1</childids>
  <first_add_administered>sample string 14</first_add_administered>
  <imageList>
    <JournalImageList>
      <ContentType>sample string 2</ContentType>
      <ImageURL>sample string 1</ImageURL>
      <VideoURL>sample string 3</VideoURL>
    </JournalImageList>
    <JournalImageList>
      <ContentType>sample string 2</ContentType>
      <ImageURL>sample string 1</ImageURL>
      <VideoURL>sample string 3</VideoURL>
    </JournalImageList>
  </imageList>
  <imageurl xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </imageurl>
  <mealType_Id>11</mealType_Id>
  <meal_item_id>12</meal_item_id>
  <nature_of_injury>sample string 13</nature_of_injury>
  <note_date>sample string 7</note_date>
  <notes>sample string 4</notes>
  <ounces_served>sample string 10</ounces_served>
  <parent_notified>true</parent_notified>
  <parent_signature>sample string 18</parent_signature>
  <parent_staff_id>19</parent_staff_id>
  <staff_signature>sample string 16</staff_signature>
  <staffonly>true</staffonly>
  <subcategoryid>sample string 6</subcategoryid>
  <temperature>sample string 9</temperature>
  <time>sample string 5</time>
</SaveChildNoteRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SaveChildNoteRequestModel'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>