| Required permission: | CreatePayments | 
| POST | /Dynamics/CreateSale/{regent_id} | 
|---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports regis.ClassLibrary.Requests
Namespace Global
    Namespace regis.ClassLibrary.Requests
        Public Partial Class FinanceCreateSaleItemsRequest
            Public Overridable Property amount As Decimal
            Public Overridable Property code As String
        End Class
        Public Partial Class FinanceCreateSaleRequest
            Public Sub New()
                sale_items = New List(Of FinanceCreateSaleItemsRequest)
            End Sub
            Public Overridable Property regent_id As Integer
            Public Overridable Property amount As Decimal
            Public Overridable Property code As String
            Public Overridable Property rebate_code As String
            Public Overridable Property rebate_amount As Nullable(Of Decimal)
            Public Overridable Property payment_id As String
            Public Overridable Property reporting_term As String
            Public Overridable Property sale_items As List(Of FinanceCreateSaleItemsRequest)
        End Class
    End Namespace
End Namespace
VB.NET FinanceCreateSaleRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Dynamics/CreateSale/{regent_id} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"regent_id":0,"amount":0,"code":"String","rebate_code":"String","rebate_amount":0,"payment_id":"String","reporting_term":"String","sale_items":[{"amount":0,"code":"String"}]}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}