| Required role: | REGISUserRole |
| POST | /finance/invoice-dynamics-audit/logs |
|---|
namespace regis.ClassLibrary.Requests
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type InvoiceDynamicsTransactionResponse() =
member val dynamics_log_id:Nullable<Int32> = new Nullable<Int32>() with get,set
member val action:String = null with get,set
member val note:String = null with get,set
member val logged_amount:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val document_number:String = null with get,set
member val customer_number:String = null with get,set
member val logged_at:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val regis_invoice_reference:String = null with get,set
member val gp_source:String = null with get,set
member val found_in_gp:Boolean = new Boolean() with get,set
member val gp_type:Int32 = new Int32() with get,set
member val gp_status:Int32 = new Int32() with get,set
member val batch_number:String = null with get,set
member val gp_amount:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val is_open:Boolean = new Boolean() with get,set
member val is_posted:Boolean = new Boolean() with get,set
member val is_void:Boolean = new Boolean() with get,set
member val document_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val posting_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
[<AllowNullLiteral>]
type InvoiceEconnectLogResponse() =
member val id:Int32 = new Int32() with get,set
member val timestamp:DateTime = new DateTime() with get,set
member val xml:String = null with get,set
member val response:String = null with get,set
[<AllowNullLiteral>]
type InvoiceDynamicsAuditResponse() =
member val invoice_id:Nullable<Int32> = new Nullable<Int32>() with get,set
member val invoice_uuid:String = null with get,set
member val reporting_term:String = null with get,set
member val invoice_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val invoice_status:String = null with get,set
member val description:String = null with get,set
member val total_charges:Decimal = new Decimal() with get,set
member val total_credits:Decimal = new Decimal() with get,set
member val net:Decimal = new Decimal() with get,set
member val regent_id:Int32 = new Int32() with get,set
member val student_uuid:String = null with get,set
member val student_name:String = null with get,set
member val initiator_name:String = null with get,set
member val has_regis_invoice:Boolean = new Boolean() with get,set
member val reconciliation_type:String = null with get,set
member val dynamics_status:String = null with get,set
member val dynamics_transactions:ResizeArray<InvoiceDynamicsTransactionResponse> = new ResizeArray<InvoiceDynamicsTransactionResponse>() with get,set
member val econnect_logs:ResizeArray<InvoiceEconnectLogResponse> = new ResizeArray<InvoiceEconnectLogResponse>() with get,set
[<AllowNullLiteral>]
type InvoiceDynamicsAuditLogsRequest() =
member val invoice_id:Nullable<Int32> = new Nullable<Int32>() with get,set
member val document_number:String = null with get,set
member val authorizing_uuid:String = null with get,set
F# InvoiceDynamicsAuditLogsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /finance/invoice-dynamics-audit/logs HTTP/1.1
Host: data.regent-college.edu
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<InvoiceDynamicsAuditLogsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Requests">
<authorizing_uuid>String</authorizing_uuid>
<document_number>String</document_number>
<invoice_id>0</invoice_id>
</InvoiceDynamicsAuditLogsRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<InvoiceDynamicsAuditResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Responses">
<description>String</description>
<dynamics_status>String</dynamics_status>
<dynamics_transactions>
<InvoiceDynamicsTransactionResponse>
<action>String</action>
<batch_number>String</batch_number>
<customer_number>String</customer_number>
<document_date>0001-01-01T00:00:00</document_date>
<document_number>String</document_number>
<dynamics_log_id>0</dynamics_log_id>
<found_in_gp>false</found_in_gp>
<gp_amount>0</gp_amount>
<gp_source>String</gp_source>
<gp_status>0</gp_status>
<gp_type>0</gp_type>
<is_open>false</is_open>
<is_posted>false</is_posted>
<is_void>false</is_void>
<logged_amount>0</logged_amount>
<logged_at>0001-01-01T00:00:00</logged_at>
<note>String</note>
<posting_date>0001-01-01T00:00:00</posting_date>
<regis_invoice_reference>String</regis_invoice_reference>
</InvoiceDynamicsTransactionResponse>
</dynamics_transactions>
<econnect_logs>
<InvoiceEconnectLogResponse>
<id>0</id>
<response>String</response>
<timestamp>0001-01-01T00:00:00</timestamp>
<xml>String</xml>
</InvoiceEconnectLogResponse>
</econnect_logs>
<has_regis_invoice>false</has_regis_invoice>
<initiator_name>String</initiator_name>
<invoice_date>0001-01-01T00:00:00</invoice_date>
<invoice_id>0</invoice_id>
<invoice_status>String</invoice_status>
<invoice_uuid>String</invoice_uuid>
<reconciliation_type>String</reconciliation_type>
<regent_id>0</regent_id>
<reporting_term>String</reporting_term>
<student_name>String</student_name>
<student_uuid>String</student_uuid>
<total_charges>0</total_charges>
<total_credits>0</total_credits>
</InvoiceDynamicsAuditResponse>