| Required role: | REGISUserRole |
| POST | /registration/cross-term-billing-audit |
|---|
import Foundation
import ServiceStack
public class CrossTermRegistrationBillingAuditRequest : Codable
{
public var reporting_term:String
public var from_date:Date
public var to_date:Date
public var billed_term:String
public var regent_id:Int?
public var operation:String
public var is_admin:Bool?
public var authorizing_uuid:String
required public init(){}
}
Swift CrossTermRegistrationBillingAuditRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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/jsonl
Content-Type: text/jsonl
Content-Length: length
{"reporting_term":"String","from_date":"0001-01-01T00:00:00.0000000","to_date":"0001-01-01T00:00:00.0000000","billed_term":"String","regent_id":0,"operation":"String","is_admin":false,"authorizing_uuid":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
[{"transaction_uuid":"String","source_reporting_term":"String","completed_datetime":"0001-01-01T00:00:00.0000000","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}]}]}]