Reporting Services

<back to all web services

GiftTransactionTotalsRequest

Requires Authentication
The following routes are available for this service:
All Verbs/Gift-TransactionTotals/Company/{CompanyId}
All Verbs/Gift-TransactionTotals/Company/{CompanyId}/{Start}/{Take}
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class GiftTransactionTotalsRequest
    {
        public Integer companyId = null;
        public Integer start = null;
        public Integer take = null;
        
        public Integer getCompanyId() { return companyId; }
        public GiftTransactionTotalsRequest setCompanyId(Integer value) { this.companyId = value; return this; }
        public Integer getStart() { return start; }
        public GiftTransactionTotalsRequest setStart(Integer value) { this.start = value; return this; }
        public Integer getTake() { return take; }
        public GiftTransactionTotalsRequest setTake(Integer value) { this.take = value; return this; }
    }

}

Java GiftTransactionTotalsRequest DTOs

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

HTTP + JSV

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

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

{
	companyId: 0,
	start: 0,
	take: 0
}