POST api/v{version}/Nutrition/WriteStudentBlockEcheck
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
StudentBlockEcheckBindingModelName | Description | Type | Additional information |
---|---|---|---|
StudentNumber | string |
None. |
|
RecordOriginId | integer |
None. |
|
UserName | string |
None. |
|
BlockEcheck | boolean |
None. |
|
DistrictId | integer |
None. |
|
Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "StudentNumber": "sample string 1", "RecordOriginId": 2, "UserName": "sample string 3", "BlockEcheck": true, "DistrictId": 4, "Comment": "sample string 5" }
application/xml, text/xml
Sample:
<StudentBlockEcheckBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.APIModels"> <BlockEcheck>true</BlockEcheck> <Comment>sample string 5</Comment> <DistrictId>4</DistrictId> <RecordOriginId>2</RecordOriginId> <StudentNumber>sample string 1</StudentNumber> <UserName>sample string 3</UserName> </StudentBlockEcheckBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OperationResultName | Description | Type | Additional information |
---|---|---|---|
result | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "result": "sample string 1" }
application/xml, text/xml
Sample:
<OperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.Models"> <Result>sample string 1</Result> </OperationResult>