POST api/ExamPreparationDailyTrack

Request Information

URI Parameters

None.

Body Parameters

ExamPreparationDailyTrackModel
NameDescriptionTypeAdditional information
JSON

Collection of ExamPreparationDailyTrack

None.

Request Formats

application/json, text/json

Sample:
{
  "JSON": [
    {
      "STUDENT_ID": 1,
      "EXAM_PREP_CHAPTER_CONFIG_ID": 2,
      "TRACKING_DATE": "sample string 3",
      "COMMENTS": "sample string 4",
      "COMPLETION_STATUS": "sample string 5",
      "COMPLETED_HOUR": "sample string 6"
    },
    {
      "STUDENT_ID": 1,
      "EXAM_PREP_CHAPTER_CONFIG_ID": 2,
      "TRACKING_DATE": "sample string 3",
      "COMMENTS": "sample string 4",
      "COMPLETION_STATUS": "sample string 5",
      "COMPLETED_HOUR": "sample string 6"
    }
  ]
}

application/xml, text/xml

Sample:
<ExamPreparationDailyTrackModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.ExampPreparation">
  <JSON>
    <ExamPreparationDailyTrack>
      <COMMENTS>sample string 4</COMMENTS>
      <COMPLETED_HOUR>sample string 6</COMPLETED_HOUR>
      <COMPLETION_STATUS>sample string 5</COMPLETION_STATUS>
      <EXAM_PREP_CHAPTER_CONFIG_ID>2</EXAM_PREP_CHAPTER_CONFIG_ID>
      <STUDENT_ID>1</STUDENT_ID>
      <TRACKING_DATE>sample string 3</TRACKING_DATE>
    </ExamPreparationDailyTrack>
    <ExamPreparationDailyTrack>
      <COMMENTS>sample string 4</COMMENTS>
      <COMPLETED_HOUR>sample string 6</COMPLETED_HOUR>
      <COMPLETION_STATUS>sample string 5</COMPLETION_STATUS>
      <EXAM_PREP_CHAPTER_CONFIG_ID>2</EXAM_PREP_CHAPTER_CONFIG_ID>
      <STUDENT_ID>1</STUDENT_ID>
      <TRACKING_DATE>sample string 3</TRACKING_DATE>
    </ExamPreparationDailyTrack>
  </JSON>
</ExamPreparationDailyTrackModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Errormodel
NameDescriptionTypeAdditional information
ERR_CODE

integer

None.

REF_ID

integer

None.

USERNAME

string

None.

MESSAGE

string

None.

FetchData

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ERR_CODE": 1,
  "REF_ID": 2,
  "USERNAME": "sample string 3",
  "MESSAGE": "sample string 4",
  "FetchData": {}
}

application/xml, text/xml

Sample:
<Errormodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
  <ERR_CODE>1</ERR_CODE>
  <FetchData />
  <MESSAGE>sample string 4</MESSAGE>
  <REF_ID>2</REF_ID>
  <USERNAME>sample string 3</USERNAME>
</Errormodel>