twilio_accounttwilio_account_addresstwilio_account_applicationtwilio_account_balancetwilio_account_bundletwilio_account_calltwilio_account_incoming_phone_numbertwilio_account_keytwilio_account_messagetwilio_chat_servicetwilio_chat_service_usertwilio_messaging_servicetwilio_serverless_servicetwilio_serverless_service_function
Table: twilio_account_key
The Twilio account key provides a powerful and flexible primitive for managing access to the Twilio API.
Note: You must authenticate either using an Auth Token or a Main API Key to query this table.
Examples
Basic info
select sid, friendly_name, date_createdfrom twilio_account_key;
List keys older than 90 days
select sid, friendly_name, date_created, extract( day from current_timestamp - date_created ) as agefrom twilio_account_keywhere extract( day from current_timestamp - date_created ) > 90;
.inspect twilio_account_key
API keys in the Twilio account.
Name | Type | Description |
---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. |
account_sid | text | The SID of the Account that created the resource. |
date_created | timestamp with time zone | The date and time that the resource was created. |
date_updated | timestamp with time zone | The date and time that the resource was last updated. |
friendly_name | text | The string that you assigned to describe the resource. |
sid | text | The unique string that identifies the resource. |
title | text | Title of the resource. |