Skip to main content

account_types

Creates, updates, deletes, gets or lists an account_types resource.

Overview

Nameaccount_types
TypeResource
Idnetlify.accounts.account_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
namestring
capabilitiesstring(opaque JSON object)
descriptionstring
monthly_dollar_priceinteger
monthly_seats_addon_dollar_priceinteger
yearly_dollar_priceinteger
yearly_seats_addon_dollar_priceinteger

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,
name,
capabilities,
description,
monthly_dollar_price,
monthly_seats_addon_dollar_price,
yearly_dollar_price,
yearly_seats_addon_dollar_price
FROM netlify.accounts.account_types
;