POST api/v{version}/Fees/AddOtherFeeToCart

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

AddAssignedFeeBindingModel
NameDescriptionTypeAdditional information
DistrictId

integer

None.

Memo

string

Required

AmountEntered

decimal number

Required

Range: inclusive between 0 and 9999.99

AmountDue

decimal number

Required

StudentId

integer

Required

StudentNumber

string

None.

SchoolFeeId

integer

Required

AcceptPartialPayment

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "DistrictId": 1,
  "Memo": "sample string 2",
  "AmountEntered": 3.0,
  "AmountDue": 4.0,
  "StudentId": 5,
  "StudentNumber": "sample string 6",
  "SchoolFeeId": 7,
  "AcceptPartialPayment": true
}

application/xml, text/xml

Sample:
<AddAssignedFeeBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.APIModels">
  <AcceptPartialPayment>true</AcceptPartialPayment>
  <AmountDue>4</AmountDue>
  <AmountEntered>3</AmountEntered>
  <DistrictId>1</DistrictId>
  <Memo>sample string 2</Memo>
  <SchoolFeeId>7</SchoolFeeId>
  <StudentId>5</StudentId>
  <StudentNumber>sample string 6</StudentNumber>
</AddAssignedFeeBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OperationResult
NameDescriptionTypeAdditional 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>