Required role: | REGISUserRole |
POST | /Finance/FinancialAid/Applications/Update |
---|
"use strict";
export class FinancialAidApplicationUpdateBatchItemRequest {
/** @param {{application_uuid?:string,award_per_term?:number,current_status?:string,end_term?:string,comments?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
application_uuid;
/** @type {number} */
award_per_term;
/** @type {string} */
current_status;
/** @type {string} */
end_term;
/** @type {string} */
comments;
}
export class FinancialAidApplicationUpdateBatchRequest {
/** @param {{authorizing_uuid?:string,financial_aid_applications?:FinancialAidApplicationUpdateBatchItemRequest[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
authorizing_uuid;
/** @type {FinancialAidApplicationUpdateBatchItemRequest[]} */
financial_aid_applications;
}
JavaScript FinancialAidApplicationUpdateBatchRequest 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/Applications/Update HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
authorizing_uuid: String,
financial_aid_applications:
[
{
application_uuid: String,
award_per_term: 0,
current_status: String,
end_term: String,
comments: String
}
]
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }