You can use the information_schema.accounts view to return information about accounts.

You can use a SELECT query to return information about each account, as shown in the example below.

SELECT
  *
FROM
  information_schema.accounts;

Read more about managing accounts here.

Columns in information_schema.accounts

Each row has the following columns with information about the account.

Column NameData TypeDescription
account_nameTEXTThe name of the account.
regionTEXTThe region in which the account can be used.
urlTEXTThe account login page URL.
account_idTEXTThe unique account ID.
trust_policy_roleTEXTRole provided by Firebolt to enable access to customer S3 buckets
createdTIMESTAMPTime (UTC) that the account was created.
account_ownerTEXTThe name of the identity this account belongs to.
last_alteredTIMESTAMPTime (UTC) that the user was last edited.
last_altered_byTEXTName of the last user to edit the role.