Recurring Payment
Callbacks for payments initiated via Paywall’s recurring payment service are delivered as follows:
Key
Description
public class RecurringCallbackRequest
{
public int SubscriptionId { get; set; }
public int SubscriptionType { get; set; }
public Guid SubscriptionCode { get; set; }
public string SubscriptionMerchantCode { get; set; }
public decimal Amount { get; set; }
public bool Success { get; set; }
public string FailReason { get; set; }
public int? PaymentErrorCode { get; set; }
public string PaymentMessage { get; set; }
public int? PaymentId { get; set; }
public int Attempt { get; set; }
public bool AttemptFinished { get; set; }
public string Hash { get; set; }
public string HashFormat { get; set; }
public short? HashKeyType { get; set; }
}Last updated