Required role: | REGISUserRole |
POST | /StudentGraduation/{uuid}/{year}/Update/Paid |
---|
"use strict";
export class StudentGraduationUpdatePaidRequest {
/** @param {{uuid?:string,authorizing_uuid?:string,year?:number,is_paid?:boolean,is_hood_paid?:boolean,is_late?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
uuid;
/** @type {string} */
authorizing_uuid;
/** @type {?number} */
year;
/** @type {boolean} */
is_paid;
/** @type {boolean} */
is_hood_paid;
/** @type {boolean} */
is_late;
}
JavaScript StudentGraduationUpdatePaidRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /StudentGraduation/{uuid}/{year}/Update/Paid HTTP/1.1
Host: data.regent-college.edu
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"uuid":"String","authorizing_uuid":"String","year":0,"is_paid":false,"is_hood_paid":false,"is_late":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}