POST
/
console
/
v1
/
metrics
/
metric_source
/
{name}
curl --request POST \
  --url https://statsigapi.net/console/v1/metrics/metric_source/{name} \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "name": "<any>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "sql": "<string>",
  "timestampColumn": "<string>",
  "timestampAsDay": true,
  "idTypeMapping": [
    {
      "statsigUnitID": "<string>",
      "column": "<string>"
    }
  ],
  "sourceType": "table",
  "tableName": "<string>",
  "customFieldMapping": [
    {
      "key": "<string>",
      "formula": "<string>"
    }
  ],
  "isReadOnly": true,
  "owner": {
    "ownerID": "user123",
    "ownerType": "USER",
    "ownerName": "John Doe",
    "ownerEmail": "owner123@test.com"
  },
  "dryRun": true
}'
{
  "message": "Metric source updated successfully.",
  "data": {
    "name": "test_metric_source4",
    "description": "Test description for metric source",
    "tags": [
      "non_production"
    ],
    "sql": "SELECT * FROM `shoppy-sales.logging.events`",
    "timestampColumn": "ts",
    "timestampAsDay": true,
    "idTypeMapping": [
      {
        "statsigUnitID": "userID",
        "column": "user_id"
      }
    ],
    "sourceType": "table",
    "tableName": "shoppy-sales.logging.events"
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

name
string
required

name

Body

application/json
sql
string
required

The SQL query or statement used to extract data from the metric source.

timestampColumn
string
required

The name of the column containing timestamp data for the metric source.

idTypeMapping
object[]
required

Array defining the mapping between Statsig unit IDs and their respective source columns.

name
any

The name of the metric source cannot be changed in this update, ensuring the identity remains consistent.

description
string

An optional updated description for the metric source, providing additional context or changes.

tags
string[]

Optional array of tags for categorizing the metric source, allowing for updates to its categorization.

timestampAsDay
boolean

Indicates whether the timestamp should be treated as a day-level granularity.

sourceType
enum<string>

The type of source, indicating whether it is a database table or a custom query.

Available options:
table,
query
tableName
string

The name of the database table if the source type is "table".

customFieldMapping
object[]

Optional array defining mappings for custom fields using specific formulas.

isReadOnly
boolean

Specifies if the source can only be edited via the Console API.

owner
object | null

Schema for owner data including ID, type, name. Note that if Entity is created by CONSOLE API, owner will be undefined.

Example:
{
  "ownerID": "user123",
  "ownerType": "USER",
  "ownerName": "John Doe",
  "ownerEmail": "owner123@test.com"
}
dryRun
boolean

Skips persisting updates to the metric source (used to validate that inputs are correct)

Response

200
application/json
Update metric source response
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.