POST api/LiveSchoolData/PostSchoolSessionPicData
Request Information
URI Parameters
None.
Body Parameters
SchoolSessionPicRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| session_id | integer |
None. |
|
| institution_id | integer |
None. |
|
| taken_time | integer |
None. |
|
| screen_shot | string |
None. |
|
| class_photo | string |
None. |
|
| is_first_photo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"session_id": 1,
"institution_id": 2,
"taken_time": 3,
"screen_shot": "sample string 4",
"class_photo": "sample string 5",
"is_first_photo": 6
}
application/xml, text/xml
Sample:
<SchoolSessionPicRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StOMSDataWebApi.Models"> <class_photo>sample string 5</class_photo> <institution_id>2</institution_id> <is_first_photo>6</is_first_photo> <screen_shot>sample string 4</screen_shot> <session_id>1</session_id> <taken_time>3</taken_time> </SchoolSessionPicRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |