Skip to main content

payment_methods

Creates, updates, deletes, gets or lists a payment_methods resource.

Overview

Namepayment_methods
TypeResource
Idnetlify.accounts.payment_methods

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
method_namestring
created_atstring (dateTime)
dataobject
statestring
typestring
updated_atstring (dateTime)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

OK

SELECT
id,
method_name,
created_at,
data,
state,
type,
updated_at
FROM netlify.accounts.payment_methods
;