| GET,OPTIONS | /v1/laborsales/summary |
|---|
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 DayView() =
member val DateIso:String = null with get,set
member val GrossSales:Decimal = new Decimal() with get,set
member val TransactionCount:Int32 = new Int32() with get,set
member val LaborHours:Decimal = new Decimal() with get,set
member val CostedHours:Decimal = new Decimal() with get,set
member val LaborCost:Decimal = new Decimal() with get,set
member val WorkerCount:Int32 = new Int32() with get,set
member val LaborPct:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val Splh:Nullable<Decimal> = new Nullable<Decimal>() with get,set
[<AllowNullLiteral>]
type LocationView() =
member val LocationId:String = null with get,set
member val LocationName:String = null with get,set
member val GrossSales:Decimal = new Decimal() with get,set
member val TransactionCount:Int32 = new Int32() with get,set
member val SharePct:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val BranchId:String = null with get,set
member val BranchName:String = null with get,set
member val LaborHours:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val CostedHours:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val LaborCost:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val LaborPct:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val Splh:Nullable<Decimal> = new Nullable<Decimal>() with get,set
[<AllowNullLiteral>]
type TotalsView() =
member val GrossSales:Decimal = new Decimal() with get,set
member val TransactionCount:Int32 = new Int32() with get,set
member val LaborHours:Decimal = new Decimal() with get,set
member val CostedHours:Decimal = new Decimal() with get,set
member val LaborCost:Decimal = new Decimal() with get,set
member val LaborPct:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val Splh:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val DaysWithSales:Int32 = new Int32() with get,set
member val DaysWithLabor:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type SummaryView() =
member val Configured:Boolean = new Boolean() with get,set
member val Connected:Boolean = new Boolean() with get,set
member val NeedsReconnect:Boolean = new Boolean() with get,set
member val Currency:String = null with get,set
member val Days:ResizeArray<DayView> = new ResizeArray<DayView>() with get,set
member val Locations:ResizeArray<LocationView> = new ResizeArray<LocationView>() with get,set
member val Totals:TotalsView = null with get,set
member val PriorTotals:TotalsView = null with get,set
member val AttributionNote:String = null with get,set
[<AllowNullLiteral>]
type LaborSalesSummaryResponse() =
member val Summary:SummaryView = null with get,set
member val FromDate:String = null with get,set
member val ToDate:String = null with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type LaborSalesSummaryRequest() =
member val FromDate:String = null with get,set
member val ToDate:String = null with get,set
F# LaborSalesSummaryRequest 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.
GET /v1/laborsales/summary HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"Summary":{"Configured":false,"Connected":false,"NeedsReconnect":false,"Currency":"String","Days":[{"DateIso":"String","GrossSales":0,"TransactionCount":0,"LaborHours":0,"CostedHours":0,"LaborCost":0,"WorkerCount":0,"LaborPct":0,"Splh":0}],"Locations":[{"LocationId":"String","LocationName":"String","GrossSales":0,"TransactionCount":0,"SharePct":0,"BranchId":"String","BranchName":"String","LaborHours":0,"CostedHours":0,"LaborCost":0,"LaborPct":0,"Splh":0}],"Totals":{"GrossSales":0,"TransactionCount":0,"LaborHours":0,"CostedHours":0,"LaborCost":0,"LaborPct":0,"Splh":0,"DaysWithSales":0,"DaysWithLabor":0},"PriorTotals":{"GrossSales":0,"TransactionCount":0,"LaborHours":0,"CostedHours":0,"LaborCost":0,"LaborPct":0,"Splh":0,"DaysWithSales":0,"DaysWithLabor":0},"AttributionNote":"String"},"FromDate":"String","ToDate":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}