Interface CreatePortalResponse

interface CreatePortalResponse {
    access_url: string;
    created_at: number;
    customer_id: string;
    expires_at?: number;
    id: string;
    linked_customers?: {
        customer_id: string;
        email?: string;
        has_active_subscription: boolean;
        has_billing_address: boolean;
        has_payment_method: boolean;
    }[];
    login_at?: number;
    login_ipaddress?: string;
    logout_at?: number;
    logout_ipaddress?: string;
    redirect_url?: string;
    status: string;
    token: string;
}

Properties

access_url: string
created_at: number
customer_id: string
expires_at?: number
id: string
linked_customers?: {
    customer_id: string;
    email?: string;
    has_active_subscription: boolean;
    has_billing_address: boolean;
    has_payment_method: boolean;
}[]
login_at?: number
login_ipaddress?: string
logout_at?: number
logout_ipaddress?: string
redirect_url?: string
status: string
token: string