POST
/
console
/
v1
/
experiments
/
assignment_sources
curl --request POST \
  --url https://statsigapi.net/console/v1/experiments/assignment_sources \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "isVerified": true,
  "tags": [
    "<string>"
  ],
  "sql": "<string>",
  "timestampColumn": "<string>",
  "experimentIDColumn": "<string>",
  "groupIDColumn": "<string>",
  "idTypeMapping": [
    {
      "statsigUnitID": "<string>",
      "column": "<string>"
    }
  ],
  "isReadOnly": true,
  "owner": {
    "ownerID": "user123",
    "ownerType": "USER",
    "ownerName": "John Doe",
    "ownerEmail": "owner123@test.com"
  }
}'
{
  "message": "Assignment Source created successfully",
  "data": {
    "name": "exposures4",
    "description": "",
    "tags": [],
    "sql": "SELECT * FROM shoppy-sales.experiment_data.exposures",
    "timestampColumn": "ts",
    "groupIDColumn": "group_id",
    "experimentIDColumn": "experiment_name",
    "idTypeMapping": [
      {
        "statsigUnitID": "stableID",
        "column": "user_id"
      }
    ]
  }
}

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
name
string
required

Unique identifier for the assignment source.

sql
string
required

SQL query defining the data source for assignments.

timestampColumn
string
required

Column name representing the timestamp of assignments.

experimentIDColumn
string
required

Column name for the experiment ID associated with the assignments.

groupIDColumn
string
required

Column name for the group ID linked to the assignments.

idTypeMapping
object[]
required

Mappings of Statsig units to their respective columns.

description
string

Optional detailed context for the assignment source.

isVerified
boolean

Marks the assignment source as verified for internal trustworthiness.

tags
string[]

Optional tags for categorization.

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"
}

Response

201
application/json
Create Assignment Source response
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.