PayFanout API reference
    Preparing search index...

    Interface PaysafeSubscriptionLike

    Subscription as the Payment Scheduler API reports it. amount/currency ride the nested plan (the subscription itself carries neither); plan, customerProfile, and paymentsInformation are requestable sub-components.

    interface PaysafeSubscriptionLike {
        accountId?: string;
        creationTime?: string;
        customerProfile?: {
            email?: string;
            firstName?: string;
            id?: string;
            lastName?: string;
            locale?: string;
            phone?: string;
        };
        id: string;
        merchantRefNum?: string;
        paymentHandleToken?: string;
        paymentsInformation?: {
            nextPayment?: PaysafeScheduledPaymentLike;
            previousPayment?: PaysafeScheduledPaymentLike;
        };
        paymentType?: string;
        plan?: PaysafePlanLike;
        startTime?: string;
        status?: string;
    }
    Index
    accountId?: string
    creationTime?: string
    customerProfile?: {
        email?: string;
        firstName?: string;
        id?: string;
        lastName?: string;
        locale?: string;
        phone?: string;
    }
    id: string
    merchantRefNum?: string
    paymentHandleToken?: string

    The MULTI_USE token the scheduler charges each installment against.

    paymentsInformation?: {
        nextPayment?: PaysafeScheduledPaymentLike;
        previousPayment?: PaysafeScheduledPaymentLike;
    }
    paymentType?: string
    startTime?: string
    status?: string