| Requires any of the roles: | Agent, Administrator |
| GET | /v1/AdjustmentReport/{ParamStartDate}/{ParamEndDate} |
|---|
namespace CRM.AgencyPlatform.API.Internal
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type Adjustment() =
member val ID:Int32 = new Int32() with get,set
member val AdjustmentDate:DateTime = new DateTime() with get,set
member val Agent:String = null with get,set
member val Reason:String = null with get,set
member val Amount:Decimal = new Decimal() with get,set
member val Approved:String = null with get,set
member val AdjType:String = null with get,set
member val Income:String = null with get,set
member val Paid:String = null with get,set
member val BalanceForward:String = null with get,set
member val BalanceDate:String = null with get,set
[<AllowNullLiteral>]
type AdjustmentReportResponse() =
member val ResponseStatus:ResponseStatus = null with get,set
member val ReportData:ResizeArray<Adjustment> = new ResizeArray<Adjustment>() with get,set
[<AllowNullLiteral>]
type AdjustmentReportRequest() =
member val ParamStartDate:DateTime = new DateTime() with get,set
member val ParamEndDate:DateTime = new DateTime() with get,set
F# AdjustmentReportRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/AdjustmentReport/{ParamStartDate}/{ParamEndDate} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
ReportData:
[
{
ID: 0,
AdjustmentDate: 0001-01-01,
Agent: String,
Reason: String,
Amount: 0,
Approved: String,
AdjType: String,
Income: String,
Paid: String,
BalanceForward: String,
BalanceDate: String
}
]
}