SuiteQL Query Library

Payment Methods

Returns a list of active payment methods.

-- Contributor: Tim Dietrich (timdietrich@me.com)
-- Additional Info: https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_N1292421.html#procedure_N1292443
SELECT 
	ID,
	Name, 
	BUILTIN.DF( MethodType ) AS MethodType,
	BUILTIN.DF( MerchantAccounts ) AS MerchantAccounts
FROM 
	PaymentMethod
WHERE
	IsInactive = 'F'
ORDER BY
	Name

← Back to Query Library