account_types
Creates, updates, deletes, gets or lists an account_types resource.
Overview
| Name | account_types |
| Type | Resource |
| Id | netlify.accounts.account_types |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | |
name | string | |
capabilities | string | (opaque JSON 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 |
|---|---|---|---|---|
list | 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
- list
OK
SELECT
id,
name,
capabilities,
description,
monthly_dollar_price,
monthly_seats_addon_dollar_price,
yearly_dollar_price,
yearly_seats_addon_dollar_price
FROM netlify.accounts.account_types
;