billing_payment_methods
Creates, updates, deletes, gets or lists a billing_payment_methods
resource.
Overview
Name | billing_payment_methods |
Type | Resource |
Id | netlify.payment_method.billing_payment_methods |
Fields
The following fields are returned by SELECT
queries:
- listPaymentMethodsForUser
Name | Datatype | Description |
---|---|---|
id | string | |
method_name | string | |
created_at | string (dateTime) | |
data | object | |
state | string | |
type | string | |
updated_at | string (dateTime) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
listPaymentMethodsForUser | select |
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.
Name | Datatype | Description |
---|
SELECT
examples
- listPaymentMethodsForUser
OK
SELECT
id,
method_name,
created_at,
data,
state,
type,
updated_at
FROM netlify.payment_method.billing_payment_methods
;