| GET | /sales/members/{MemberId}/status | Get customer's billing status | 
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class GetBillingStatusRequest : GetBillingStatusRequestDto(), IRestrictedApiRequest
{
    /**
    * IP address of the end user
    */
    @ApiMember(Description="IP address of the end user", Name="X-Forwarded-For", ParameterType="header")
    var XForwardedFor:String? = null
    /**
    * Api Key - grants access to resources
    */
    @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
    var ApiKey:String? = null
    /**
    * Store ID # member belongs to
    */
    @ApiMember(DataType="integer", Description="Store ID # member belongs to", IsRequired=true, Name="StoreId", ParameterType="query")
    var StoreId:Int? = null
    /**
    * ID of the member to lookup
    */
    @ApiMember(DataType="integer", Description="ID of the member to lookup", IsRequired=true, Name="MemberId", ParameterType="path")
    var MemberId:Int? = null
    var RestrictedId:Int? = null
    var RestrictedResourceType:RestrictedResourceType? = null
}
open class GetBillingStatusRequestDto : ApiDtoBase()
{
    var MemberId:Int? = null
}
open class ApiDtoBase : IApiDtoBase
{
    var ApiKey:String? = null
    var StoreId:Int? = null
    var ChainId:Int? = null
}
enum class RestrictedResourceType
{
    Store,
    Chain,
    User,
    Undefined,
}
open class MemberBillingStatus : GetMemberBillingStatus_Result()
{
    var Invoices:ArrayList<MemberBillingStatusInvoice> = ArrayList<MemberBillingStatusInvoice>()
    var UserTypeId:Int? = null
    var UserTypeName:String? = null
    var NewUserId:Int? = null
}
@DataContract
open class GetMemberBillingStatus_Result
{
    @DataMember
    var FullName:String? = null
    @DataMember
    var MemberStatus:String? = null
    @DataMember
    var HomeClub:String? = null
    @DataMember
    var BalanceDue:BigDecimal? = null
    @DataMember
    var StoreID:Int? = null
}
open class MemberBillingStatusInvoice
{
    var InvoiceId:Int? = null
    var Status:String? = null
    var StatusId:Short? = null
    var AmountDue:BigDecimal? = null
    var SalesTaxDue:BigDecimal? = null
    var PaymentDue:Date? = null
    var PaymentMade:Date? = null
    var PackageName:String? = null
}
Kotlin GetBillingStatusRequest 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.
GET /sales/members/{MemberId}/status HTTP/1.1 
Host: www.clubready.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Invoices":[{"InvoiceId":0,"Status":"String","StatusId":0,"AmountDue":0,"SalesTaxDue":0,"PaymentDue":"0001-01-01T00:00:00.0000000","PaymentMade":"0001-01-01T00:00:00.0000000","PackageName":"String"}],"UserTypeId":0,"UserTypeName":"String","NewUserId":0,"FullName":"String","MemberStatus":"String","HomeClub":"String","BalanceDue":0,"StoreID":0}