PayFanout API reference
    Preparing search index...

    Interface NativeSubscriptionCapabilities

    Per-operation support for the PSP's native subscription product. Provider support is uneven (some PSPs expose no list endpoint, some no server-only create), so one boolean would either fake or hide support — each operation declares itself and PaymentService guards each passthrough separately. All-false means the PSP has no native subscription engine (recurring runs on the vault surface + the host-side SubscriptionManager instead).

    interface NativeSubscriptionCapabilities {
        cancel: boolean;
        create: boolean;
        list: boolean;
        retrieve: boolean;
    }
    Index
    cancel: boolean

    cancelNativeSubscription is available.

    create: boolean

    createNativeSubscription is available (server-only creation against a vaulted token).

    list: boolean

    listNativeSubscriptions is available.

    retrieve: boolean

    retrieveNativeSubscription is available.