Table: make_hook
Webhooks allow you to send data to Make over HTTP. Webhooks create a URL that you can call from an external app or service, or from another Make scenario. Use webhooks to trigger the execution of scenarios.
Key columns
- Provide a numeric
id
if you want to query for a specific Hook.
Examples
List of all Hooks
select *from make_hook;
List all Hooks not attached to a Scenario
select *from make_hookwhere scenario_id is null;
List all Hooks with queued executions
select *from make_hookwhere queue_count > 0;
List all Hooks tied to active scenarios and with dangerously full queues
select h.id, h.name, h.queue_count, h.queue_limit, h.team_id, s.id as scenario_id, s.name as scenario_namefrom make_hook h join make_scenario s on s.id = h.scenario_idwhere s.is_enabled = true and ((100.0 / h.queue_limit) * h.queue_count) > 80;
Schema for make_hook
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
data | jsonb | Additional metadata of the Hook. | |
flags | jsonb | Additional flags of the Hook. | |
id | bigint | = | The Hook ID. |
is_editable | boolean | Is the Hook editable? | |
is_enabled | boolean | Is the Hook enabled? | |
is_gone | boolean | Is the Hook gone? | |
name | text | The name of the Hook. | |
package_name | text | Package name. | |
queue_count | bigint | Queue size for this Hook. | |
queue_limit | bigint | Queue limit for this Hook. | |
scenario_id | bigint | The ID of the Scenario linked to this Hook. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
team_id | bigint | The Team ID. | |
theme | text | The color theme of the Hook. | |
title | text | The display name for the resource. | |
type | text | The type of the Hook (web/mail). | |
type_name | text | Full name of the Hook type. | |
udid | text | The unique ID of the Hook. | |
url | text | Full Hook address (URL, or email address). |