regis

<back to all web services

CrossTermRegistrationBillingAuditRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/registration/cross-term-billing-audit
"use strict";
export class CrossTermRegistrationBillingAuditRequest {
    /** @param {{reporting_term?:string,from_date?:string,to_date?:string,billed_term?:string,regent_id?:number,operation?:string,is_admin?:boolean,authorizing_uuid?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    reporting_term;
    /** @type {string} */
    from_date;
    /** @type {string} */
    to_date;
    /** @type {string} */
    billed_term;
    /** @type {?number} */
    regent_id;
    /** @type {string} */
    operation;
    /** @type {?boolean} */
    is_admin;
    /** @type {string} */
    authorizing_uuid;
}

JavaScript CrossTermRegistrationBillingAuditRequest DTOs

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

HTTP + JSV

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

POST /registration/cross-term-billing-audit HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	reporting_term: String,
	from_date: 0001-01-01,
	to_date: 0001-01-01,
	billed_term: String,
	regent_id: 0,
	operation: String,
	is_admin: False,
	authorizing_uuid: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

[
	{
		transaction_uuid: String,
		source_reporting_term: String,
		completed_datetime: 0001-01-01,
		operation: String,
		is_admin: False,
		transaction_by: String,
		regent_id: 0,
		student_uuid: String,
		student_name: String,
		billed_terms: 
		[
			String
		],
		invoices: 
		[
			{
				invoice_uuid: String,
				billed_term: String,
				billing_component: String,
				status: String,
				description: String,
				total_charges: 0,
				total_credits: 0,
				is_cross_term: False,
				items: 
				[
					{
						invoice_item_uuid: String,
						rate_code: String,
						rate_description: String,
						description: String,
						charge: 0,
						credit: 0
					}
				]
			}
		]
	}
]