regis

<back to all web services

ConcentrationsRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Concentrations
"use strict";
export class ConcentrationResponse {
    /** @param {{responseStatus?:ResponseStatus,id?:number,concentration_code?:string,concentration_name?:string,is_active?:boolean}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {ResponseStatus} */
    responseStatus;
    /** @type {number} */
    id;
    /** @type {string} */
    concentration_code;
    /** @type {string} */
    concentration_name;
    /** @type {boolean} */
    is_active;
}
export class ConcentrationsResponse {
    /** @param {{responseStatus?:ResponseStatus,concentrations?:ConcentrationResponse[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {ResponseStatus} */
    responseStatus;
    /** @type {ConcentrationResponse[]} */
    concentrations;
}
export class ConcentrationsRequest {
    constructor(init) { Object.assign(this, init) }
}

JavaScript ConcentrationsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Concentrations HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"concentrations":[{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"id":0,"concentration_code":"String","concentration_name":"String","is_active":false}]}