POST school/save_message

Request Information

URI Parameters

None.

Body Parameters

SaveMessageRequest
NameDescriptionTypeAdditional information
message_id

string

None.

sender_id

string

None.

sender_name

string

None.

sender_type

string

None.

recipient_id

string

None.

recipient_name

string

None.

recipient_type

string

None.

student_id

string

None.

message_content

string

None.

date_sent

string

None.

Request Formats

application/json, text/json

Sample:
{
  "message_id": "sample string 1",
  "sender_id": "sample string 2",
  "sender_name": "sample string 3",
  "sender_type": "sample string 4",
  "recipient_id": "sample string 5",
  "recipient_name": "sample string 6",
  "recipient_type": "sample string 7",
  "student_id": "sample string 8",
  "message_content": "sample string 9",
  "date_sent": "sample string 10"
}

application/xml, text/xml

Sample:
<SaveMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NakivuboPS_API.Models">
  <date_sent>sample string 10</date_sent>
  <message_content>sample string 9</message_content>
  <message_id>sample string 1</message_id>
  <recipient_id>sample string 5</recipient_id>
  <recipient_name>sample string 6</recipient_name>
  <recipient_type>sample string 7</recipient_type>
  <sender_id>sample string 2</sender_id>
  <sender_name>sample string 3</sender_name>
  <sender_type>sample string 4</sender_type>
  <student_id>sample string 8</student_id>
</SaveMessageRequest>

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.