Reporting Services

<back to all web services

TransactionTotalsRequest

Requires Authentication
The following routes are available for this service:
All Verbs/TransactionTotals/Company/{CompanyId}
All Verbs/TransactionTotals/Company/{CompanyId}/{Start}/{Take}
import 'package:servicestack/servicestack.dart';

class TransactionTotalsRequest implements IConvertible
{
    int? CompanyId;
    int? Start;
    int? Take;

    TransactionTotalsRequest({this.CompanyId,this.Start,this.Take});
    TransactionTotalsRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        CompanyId = json['CompanyId'];
        Start = json['Start'];
        Take = json['Take'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId,
        'Start': Start,
        'Take': Take
    };

    getTypeName() => "TransactionTotalsRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'cip_reporting_staging.chargeitpro.com', types: <String, TypeInfo> {
    'TransactionTotalsRequest': TypeInfo(TypeOf.Class, create:() => TransactionTotalsRequest()),
});

Dart TransactionTotalsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /TransactionTotals/Company/{CompanyId} HTTP/1.1 
Host: cip-reporting-staging.chargeitpro.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"CompanyId":0,"Start":0,"Take":0}