POST api/AddUserShoutout

Request Information

URI Parameters

None.

Body Parameters

AddUserShoutoutModel
NameDescriptionTypeAdditional information
TO_SCHOOL_ID

integer

None.

TO_USER_ID

integer

None.

IS_PUBLIC_FLG

integer

None.

SHOUT_OUT

string

None.

SHOUT_OUT_DESC

string

None.

RATING

integer

None.

ADDRESS

string

None.

LONGITUDE

string

None.

LATITUDE

string

None.

DOC_URL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TO_SCHOOL_ID": 1,
  "TO_USER_ID": 2,
  "IS_PUBLIC_FLG": 3,
  "SHOUT_OUT": "sample string 4",
  "SHOUT_OUT_DESC": "sample string 5",
  "RATING": 6,
  "ADDRESS": "sample string 7",
  "LONGITUDE": "sample string 8",
  "LATITUDE": "sample string 9",
  "DOC_URL": "sample string 10"
}

application/xml, text/xml

Sample:
<AddUserShoutoutModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.DataManagement">
  <ADDRESS>sample string 7</ADDRESS>
  <DOC_URL>sample string 10</DOC_URL>
  <IS_PUBLIC_FLG>3</IS_PUBLIC_FLG>
  <LATITUDE>sample string 9</LATITUDE>
  <LONGITUDE>sample string 8</LONGITUDE>
  <RATING>6</RATING>
  <SHOUT_OUT>sample string 4</SHOUT_OUT>
  <SHOUT_OUT_DESC>sample string 5</SHOUT_OUT_DESC>
  <TO_SCHOOL_ID>1</TO_SCHOOL_ID>
  <TO_USER_ID>2</TO_USER_ID>
</AddUserShoutoutModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />