GET api/v{version}/Fees/{districtId}/{studentNumber}/GetAssignedFees
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
districtId | integer |
Required |
|
studentNumber | string |
Required |
|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of AssignedFeeName | Description | Type | Additional information |
---|---|---|---|
SchoolFeeId | integer |
None. |
|
Title | string |
None. |
|
Price | decimal number |
None. |
|
AmountDue | decimal number |
None. |
|
Amount | decimal number |
None. |
|
Description | string |
None. |
|
AcceptPartialPayment | boolean |
None. |
|
StudentId | integer |
None. |
|
BlankAmountDue | boolean |
None. |
|
TransactionId | integer |
None. |
|
MemoPlaceholder | string |
None. |
|
MemoRequired | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "SchoolFeeId": 1, "Title": "sample string 2", "Price": 3.0, "AmountDue": 4.0, "Amount": 5.0, "Description": "sample string 6", "AcceptPartialPayment": true, "StudentId": 8, "BlankAmountDue": true, "TransactionId": 10, "MemoPlaceholder": "sample string 11", "MemoRequired": true }, { "SchoolFeeId": 1, "Title": "sample string 2", "Price": 3.0, "AmountDue": 4.0, "Amount": 5.0, "Description": "sample string 6", "AcceptPartialPayment": true, "StudentId": 8, "BlankAmountDue": true, "TransactionId": 10, "MemoPlaceholder": "sample string 11", "MemoRequired": true } ]
application/xml, text/xml
Sample:
<ArrayOfAssignedFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.Models"> <AssignedFee> <AcceptPartialPayment>true</AcceptPartialPayment> <Amount>5</Amount> <AmountDue>4</AmountDue> <BlankAmountDue>true</BlankAmountDue> <Description>sample string 6</Description> <MemoPlaceholder>sample string 11</MemoPlaceholder> <MemoRequired>true</MemoRequired> <Price>3</Price> <SchoolFeeId>1</SchoolFeeId> <StudentId>8</StudentId> <Title>sample string 2</Title> <TransactionId>10</TransactionId> </AssignedFee> <AssignedFee> <AcceptPartialPayment>true</AcceptPartialPayment> <Amount>5</Amount> <AmountDue>4</AmountDue> <BlankAmountDue>true</BlankAmountDue> <Description>sample string 6</Description> <MemoPlaceholder>sample string 11</MemoPlaceholder> <MemoRequired>true</MemoRequired> <Price>3</Price> <SchoolFeeId>1</SchoolFeeId> <StudentId>8</StudentId> <Title>sample string 2</Title> <TransactionId>10</TransactionId> </AssignedFee> </ArrayOfAssignedFee>