Required role: | REGISUserRole |
POST | /Beanstream/Payment/{uuid}/Verify |
---|
namespace regis.ClassLibrary.Requests
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type FinancePaymentResponse() =
member val paymentUUID:String = null with get,set
member val order_id:String = null with get,set
member val external_payment_id:Int32 = new Int32() with get,set
member val added_date:DateTime = new DateTime() with get,set
member val regent_id:Int32 = new Int32() with get,set
member val uuid:String = null with get,set
member val amount:Decimal = new Decimal() with get,set
member val payment_type:String = null with get,set
member val is_pushed_to_gl:Boolean = new Boolean() with get,set
member val current_status:String = null with get,set
member val current_status_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
[<AllowNullLiteral>]
type BeanstreamPaymentVerificationRequest() =
member val uuid:String = null with get,set
F# BeanstreamPaymentVerificationRequest 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 /Beanstream/Payment/{uuid}/Verify HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"uuid":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"paymentUUID":"String","order_id":"String","external_payment_id":0,"added_date":"0001-01-01T00:00:00.0000000","regent_id":0,"uuid":"String","amount":0,"payment_type":"String","is_pushed_to_gl":false,"current_status":"String","current_status_date":"0001-01-01T00:00:00.0000000"}