Table: make_api_token
API tokens of the currently authenticated user.
Examples
List of all my API Tokens
select token, label, scope, createdfrom make_api_token;
Find out which API Token is being used without opening make.spc
select token, labelfrom make_api_tokenwhere is_active = true;
Schema for make_api_token
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created | timestamp with time zone | Creation date of the API Token. | |
is_active | boolean | Is the API Token currently used in make.spc? | |
label | text | The name of the API Token. | |
scope | jsonb | Scopes enabled for the API Token. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | The display name for the resource. | |
token | text | The API Token (masked). |