Create a saved-query context item
Persists a SQL snippet plus its target connection. The SQL text is stored in tenant S3; the metadata (connection id, optional hierarchical path, optional description) lives on the context_items row so the snippet participates in selection / search.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Display name for the saved query.
"Top customers Q3"
Data connection id this query targets. Must reference an existing integration connection in the org.
"00000000-0000-4000-a000-000000000111"
SQL text. Stored in tenant S3 + context_items. May be omitted or empty when creating a placeholder saved query.
"SELECT customer_id, SUM(amount) FROM orders GROUP BY 1 ORDER BY 2 DESC LIMIT 10"
Optional one-line description shown in the SPA list.
"Quarterly cohort by amount."
Optional hierarchical path identifying the data scope (e.g. ["database", "schema"] for Snowflake; ["dataset"] for BigQuery).
["my_dataset"]Response
UUID of the newly-created context item. Use it on subsequent GET / PATCH / DELETE calls.
"7a3f9d2c-1111-4000-a000-000000000abc"
Kind of context item created.
note, saved_query, link, dimension, fact, metric, filter "note"
Tenant S3 key for the raw content blob (notes, saved queries, links). Null for kinds without S3 backing.
"context_notes/7a3f9d2c.../Q3_churn_analysis.md"
Resolved title for the created item. Null for kinds without a title field.
"Q3 churn analysis"