POST api/Bas/CreateStudentTxn

新增

Request Information

URI Parameters

None.

Body Parameters

CreateStudentTxnCommand
NameDescriptionTypeAdditional information
StudentId

string

Required

TransactionType

integer

None.

TransactionDesc

string

None.

ExecutionResult

ServiceResult

None.

Request Formats

application/json, text/json

Sample:
{
  "StudentId": "sample string 1",
  "TransactionType": 2,
  "TransactionDesc": "sample string 3",
  "ExecutionResult": {
    "RetCode": 1,
    "Msg": "sample string 2",
    "Result": {}
  }
}

text/xml

Sample:
<CreateStudentTxnCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ems.Domain.Bas.Commands">
  <ExecutionResult xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tdf.Utils.Networking">
    <d2p1:Msg>sample string 2</d2p1:Msg>
    <d2p1:Result />
    <d2p1:RetCode>1</d2p1:RetCode>
  </ExecutionResult>
  <StudentId>sample string 1</StudentId>
  <TransactionDesc>sample string 3</TransactionDesc>
  <TransactionType>2</TransactionType>
</CreateStudentTxnCommand>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CreateStudentTxnCommand'.

Response Information

Resource Description

ServiceResult
NameDescriptionTypeAdditional information
RetCode

integer

None.

Msg

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "RetCode": 1,
  "Msg": "sample string 2",
  "Result": {}
}

text/xml

Sample:
<ServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tdf.Utils.Networking">
  <Msg>sample string 2</Msg>
  <Result />
  <RetCode>1</RetCode>
</ServiceResult>