Payment-settings -

Direct account-to-account transfers such as ACH, NEFT, or wire transfers.

This connects your store to a processor. You’ll need to input API keys or secret tokens here to "handshake" between your site and the bank. payment-settings

CREATE TABLE payment_methods ( id UUID PRIMARY KEY, user_id UUID REFERENCES users(id), stripe_payment_method_id TEXT UNIQUE, type TEXT NOT NULL, last4 TEXT, brand TEXT, expiry_month INT, expiry_year INT, bank_name TEXT, billing_address JSONB, is_default BOOLEAN DEFAULT false, created_at TIMESTAMP DEFAULT NOW() ); Direct account-to-account transfers such as ACH, NEFT, or

If you are paying for a subscription or making a one-time purchase, you may need to add a new card or bank account. Direct account-to-account transfers such as ACH