Snowflake: insert row
Dieser Inhalt ist noch nicht in Ihrer Sprache verfügbar.
The Snowflake: insert row Point template inserts a row into a Snowflake table through the SQL API, using a programmatic access token. Column values travel as bound parameters, not inside the SQL statement text, so a value can’t break out of its column and change what the statement does.
This point authenticates with its own programmatic access token — it doesn’t use any account-level integration configured elsewhere in Settings.
Configure the point
Anchor link to- Drag Snowflake: insert row from the Integrations section of the left panel onto the canvas.
- Double-click the point and enter a Step Name.
- In Account host, enter your Snowflake account’s host from its URL, for example
ab12345.eu-central-1.snowflakecomputing.com. Don’t includehttps://or a trailing slash — Pushwoosh addshttps://and the API path itself. - In Programmatic access token, enter a token from Snowsight > your user > Settings > Authentication > Programmatic access tokens. It’s stored masked, like a webhook secret header.
- In Table, enter the target table as
TABLE,SCHEMA.TABLE, orDATABASE.SCHEMA.TABLE, using only letters, digits, and underscores. This point doesn’t ask for a warehouse, database, or schema separately: a bareTABLEresolves against whatever database and schema the token’s user defaults to, and aDATABASE.SCHEMA.TABLEvalue overrides them. - In Columns, add the column name mapped to the value to write — see key/value fields. Column names take the same letters/digits/underscore rule as Table.
- Click Save.
Response
Anchor link toAfter the step runs, the submitted statement’s handle is available in later steps as attribute snowflake_statement_handle — use it the same way you’d use a Webhook response attribute, for example to set a Tag with Update user profile.
A failed request drops the traveler from the journey — see Errors and failed requests.