POST
/
console
/
v1
/
ingestion
curl --request POST \
  --url https://statsigapi.net/console/v1/ingestion \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "dataset": "Metrics",
  "column_mapping": {
    "unit_id": "<string>",
    "id_type": "<string>",
    "dateid": "<string>",
    "metric_name": "<string>",
    "metric_value": "null",
    "numerator": "null",
    "denominator": "null"
  },
  "type": "redshift",
  "source_name": "<string>",
  "query": "<string>",
  "use_delta_sharing": true,
  "share": "<string>",
  "schema": "<string>",
  "table": "<string>",
  "enabled": true
}'
{
  "type": "databricks",
  "dataset": "Metrics",
  "source_name": "ingestion-1",
  "query": "SELECT * FROM TABLE",
  "column_mapping": {
    "unit_id": "string",
    "id_type": "string",
    "dateid": "string",
    "metric_name": "string",
    "metric_value": "string",
    "numerator": "string",
    "denominator": "string"
  },
  "use_delta_sharing": false,
  "share": "string",
  "schema": "string",
  "table": "string",
  "enabled": false
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Body

application/json
dataset
enum<string>
required
Available options:
Metrics
type
enum<string>
required
Available options:
redshift,
bigquery-v2,
snowflake-v2,
databricks,
azure-synapse,
s3,
athena,
adls
source_name
string
required
column_mapping
object
query
string
use_delta_sharing
boolean
share
string
schema
string
table
string
enabled
boolean

Response

200 - application/json
Create Ingestion Success
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.