ClubReady Api

<back to all web services

PaymentProfileBalanceInquiryEndpoint

The following routes are available for this service:
GET/sales/paymentProfile/balanceInquiryLook up Factor 4 gift card balance This endpoint has two inquiry styles. If only the AcctToken is provided, it can look up balance of a factor4 gift card that has already been imported into ClubReady. If both PaymentProfile and AcctToken are provided, this endpoint will add the profile to the user before looking up the balance. If you provide both parameters, a separate call to 'sales/paymentProfile/import' is unnecessary. The AcctToken and ProfileToken are created by the ClubReadyGateway API.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ClubReady.Web.Api.Sales;
using ClubReady.Payments;
using ClubReady.Web.Api.Sales.Model;

namespace ClubReady.Payments
{
    public partial class PaymentProfileBalanceInquiryRequest
    {
        public virtual string TerminalIpAddress { get; set; }
        public virtual string AcctToken { get; set; }
        public virtual string ProfileToken { get; set; }
        public virtual int StoreId { get; set; }
    }

}

namespace ClubReady.Web.Api.Sales
{
    [ApiResponse(Description="Looks up the balance of a payment profile created by the Vault API", ResponseType=typeof(ClubReady.Payments.PaymentProfileBalanceInquiryResponse), StatusCode=200)]
    public partial class PaymentProfileBalanceInquiryEndpoint
        : PaymentProfileBalanceInquiryRequest, IApiKeyEndpoint
    {
        ///<summary>
        ///Api Authentication Key
        ///</summary>
        [ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query")]
        public virtual string ApiKey { get; set; }

        ///<summary>
        ///Store Id
        ///</summary>
        [ApiMember(Description="Store Id", IsRequired=true, ParameterType="query")]
        public virtual int StoreId { get; set; }

        ///<summary>
        ///Encoded data uniquely identifying the payment profile.  Long term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater).  The length is usually 80 characters.
        ///</summary>
        [ApiMember(Description="\r\nEncoded data uniquely identifying the payment profile.  \r\nLong term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater).  \r\nThe length is usually 80 characters.", IsRequired=true)]
        public virtual string AcctToken { get; set; }

        ///<summary>
        ///Encoded data containing non-PCI information about the Payment Profile.  ProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,it cannot be accepted and a new profile will have to be created with a new AcctToken. The timevalidation is to prevent old tokens from be re-played at a later time.  The length is variable, but generally around 1,000 characters.
        ///</summary>
        [ApiMember(Description="\r\nEncoded data containing non-PCI information about the Payment Profile.  \r\n\r\nProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,\r\nit cannot be accepted and a new profile will have to be created with a new AcctToken. The time\r\nvalidation is to prevent old tokens from be re-played at a later time.  \r\n\r\nThe length is variable, but generally around 1,000 characters.")]
        public virtual string ProfileToken { get; set; }
    }

}

namespace ClubReady.Web.Api.Sales.Model
{
    public partial class PamentProfileBalanceInquiryEndpointResponse
    {
        public virtual bool Success { get; set; }
        public virtual string Last4 { get; set; }
        public virtual decimal? AccountBalance { get; set; }
        public virtual string ResponseCode { get; set; }
        public virtual string Message { get; set; }
    }

}

C# PaymentProfileBalanceInquiryEndpoint 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.

GET /sales/paymentProfile/balanceInquiry HTTP/1.1 
Host: www.clubready.com 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Success":false,"Last4":"String","AccountBalance":0,"ResponseCode":"String","Message":"String"}