accounts_types
Creates, updates, deletes, gets or lists an accounts_types resource.
Overview
| Name | accounts_types |
| Type | Resource |
| Id | netlify.account_type.accounts_types |
Fields
The following fields are returned by SELECT queries:
- listAccountTypesForUser
| Name | Datatype | Description |
|---|---|---|
id | string | |
name | string | |
capabilities | object | |
description | string | |
monthly_dollar_price | integer | |
monthly_seats_addon_dollar_price | integer | |
yearly_dollar_price | integer | |
yearly_seats_addon_dollar_price | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
listAccountTypesForUser | 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
- listAccountTypesForUser
OK
SELECT
id,
name,
capabilities,
description,
monthly_dollar_price,
monthly_seats_addon_dollar_price,
yearly_dollar_price,
yearly_seats_addon_dollar_price
FROM netlify.account_type.accounts_types
;