| Required permission: | FinancialAidPermission |
| POST | /Finance/FinancialAid/Awards/{reporting_term}/Summary |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FinancialAidAwardResponse:
uuid: Optional[str] = None
regent_id: int = 0
first_name: Optional[str] = None
last_name: Optional[str] = None
awarded_amount: Decimal = decimal.Decimal(0)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FinancialAidAwardSummaryInTermResponse:
award_id: int = 0
award_code: Optional[str] = None
award_description: Optional[str] = None
budget_amount: Decimal = decimal.Decimal(0)
awarded_amount: Decimal = decimal.Decimal(0)
person_awards: Optional[List[FinancialAidAwardResponse]] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FinancialAidSummaryInTermResponse:
response_status: Optional[ResponseStatus] = None
reporting_term: Optional[str] = None
awards: Optional[List[FinancialAidAwardSummaryInTermResponse]] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FinancialAidSummaryInTermRequest:
reporting_term: Optional[str] = None
Python FinancialAidSummaryInTermRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Finance/FinancialAid/Awards/{reporting_term}/Summary HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
reporting_term: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
},
reporting_term: String,
awards:
[
{
award_id: 0,
award_code: String,
award_description: String,
budget_amount: 0,
awarded_amount: 0,
person_awards:
[
{
uuid: String,
regent_id: 0,
first_name: String,
last_name: String,
awarded_amount: 0
}
]
}
]
}