regis

<back to all web services

FinanceAccountLateChargeJobStatusRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Finance/AccountLate/{reporting_term}/Jobs/Status
namespace regis.ClassLibrary.Requests

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type FinanceAccountLateChargeOutcome() = 
        member val regent_id:Int32 = new Int32() with get,set
        member val status:String = null with get,set
        member val charge_amount:Nullable<Decimal> = new Nullable<Decimal>() with get,set
        member val charge_status:String = null with get,set
        member val email_status:String = null with get,set
        member val message:String = null with get,set

    [<AllowNullLiteral>]
    type FinanceAccountLateChargeJobResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val operation_id:Guid = new Guid() with get,set
        member val reporting_term:String = null with get,set
        member val calculation_date:DateTime = new DateTime() with get,set
        member val preview_only:Boolean = new Boolean() with get,set
        member val skip_exact_balance:Nullable<Decimal> = new Nullable<Decimal>() with get,set
        member val state:String = null with get,set
        member val total:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val current_regent_id:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val processed:Int32 = new Int32() with get,set
        member val succeeded:Int32 = new Int32() with get,set
        member val skipped:Int32 = new Int32() with get,set
        member val failed:Int32 = new Int32() with get,set
        member val created_utc:DateTime = new DateTime() with get,set
        member val updated_utc:DateTime = new DateTime() with get,set
        member val message:String = null with get,set
        member val report_available:Boolean = new Boolean() with get,set
        member val outcomes:ResizeArray<FinanceAccountLateChargeOutcome> = new ResizeArray<FinanceAccountLateChargeOutcome>() with get,set

    [<AllowNullLiteral>]
    type FinanceAccountLateChargeJobStatusRequest() = 
        member val authorizing_uuid:String = null with get,set
        member val reporting_term:String = null with get,set
        member val operation_id:Guid = new Guid() with get,set

F# FinanceAccountLateChargeJobStatusRequest DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /Finance/AccountLate/{reporting_term}/Jobs/Status HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"authorizing_uuid":"String","reporting_term":"String","operation_id":"00000000000000000000000000000000"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"operation_id":"00000000000000000000000000000000","reporting_term":"String","calculation_date":"0001-01-01T00:00:00.0000000","preview_only":false,"skip_exact_balance":0,"state":"String","total":0,"current_regent_id":0,"processed":0,"succeeded":0,"skipped":0,"failed":0,"created_utc":"0001-01-01T00:00:00.0000000","updated_utc":"0001-01-01T00:00:00.0000000","message":"String","report_available":false,"outcomes":[{"regent_id":0,"status":"String","charge_amount":0,"charge_status":"String","email_status":"String","message":"String"}]}