GET
/
console
/
v1
/
metrics
/
metric_source
/
{name}
curl --request GET \
  --url https://statsigapi.net/console/v1/metrics/metric_source/{name} \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Metric source read 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

Response

200
application/json
Read metric source response
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.