PayFanout API reference
    Preparing search index...

    Interface CustomerRef

    A PSP-side customer record — the anchor saved payment methods attach to. The HOST owns the mapping its user id -> pspCustomerId (PayFanout persists nothing); the card itself lives at the PSP only.

    interface CustomerRef {
        id?: string;
        pspCustomerId: string;
        pspName: string;
        raw: unknown;
    }
    Index
    id?: string

    Host-app id round-tripped via PSP metadata where supported.

    pspCustomerId: string
    pspName: string
    raw: unknown