| Required permission: | ReadAccountBalance | 
| POST | /Finance/Balance/Overall | 
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
    public static class FinanceOverallBalanceRequest
    {
        
    }
    public static class FinanceOverallBalanceResponse
    {
        public ResponseStatus responseStatus = null;
        public BigDecimal balance = null;
        public BigDecimal posted_sales = null;
        public BigDecimal unposted_sales = null;
        public BigDecimal payments = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public FinanceOverallBalanceResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public BigDecimal getBalance() { return balance; }
        public FinanceOverallBalanceResponse setBalance(BigDecimal value) { this.balance = value; return this; }
        public BigDecimal getPostedSales() { return posted_sales; }
        public FinanceOverallBalanceResponse setPostedSales(BigDecimal value) { this.posted_sales = value; return this; }
        public BigDecimal getUnpostedSales() { return unposted_sales; }
        public FinanceOverallBalanceResponse setUnpostedSales(BigDecimal value) { this.unposted_sales = value; return this; }
        public BigDecimal getPayments() { return payments; }
        public FinanceOverallBalanceResponse setPayments(BigDecimal value) { this.payments = value; return this; }
    }
}
Java FinanceOverallBalanceRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Finance/Balance/Overall HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/json
Content-Type: application/json
Content-Length: length
{}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"balance":0,"posted_sales":0,"unposted_sales":0,"payments":0}