Google BigQuery
Learn how to integrate Google BigQuery with Kitchn.io
How to connect your Google BigQuery with Kitchn
- Head to the Kitchn Integrations Settings at https://app.kitchnware.io/integrations
- Click on Google BigQuery, then click on the green Connect button
- You will be redirected to Google to grant permission, select your account, then click on Allow
- Wait for the redirection to Kitchn and your account will be successfully connected
- Your Kitchn account can now access your Google BigQuery projects.
What can I do with the Google BigQuery integration?
Query data
Example of fetching data from a table in BigQuery using the Post Integration URL node:
https://www.googleapis.com/bigquery/v2/projects/{project_name}/queries
{ "query": "SELECT ad_id, ad_name FROM `{project_name}.{dataset_name}.{table_name}` ORDER BY ad_id DESC", "useLegacySql": false }
Insert data
Example of pushing TikTok Report data to an existing table using the Post Integration URL node:
https://bigquery.googleapis.com/bigquery/v2/projects/{project_name}/datasets/{dataset_name}/tables/{table_name}/insertAll
{ "kind": "bigquery#tableDataInsertAllRequest", "rows": [ { "json": { "ad_id": "1764884863976466", "objective_type": "CONVERSIONS", "spend": "1.540", "impressions": "91", "clicks": "0", "date": "2023-05-03" } }, ... ] }
Create table
(coming soon)
See full Google’s own API references here.
Did this answer your question?
😞
😐
🤩
Last updated on January 15, 2024