GrowthBook REST API (1.0.0)
Download OpenAPI specification:Download
GrowthBook offers a full REST API for interacting with the GrowthBook application. This is currently in beta as we add more authenticated API routes and features.
Request data can use either JSON or Form data encoding (with proper Content-Type
headers). All response bodies are JSON-encoded.
The API base URL for GrowthBook Cloud is https://api.growthbook.io
. For self-hosted deployments, it is the same as your API_HOST environment variable (defaults to http://localhost:3100
). The rest of these docs will assume you are using GrowthBook Cloud.
We support both the HTTP Basic and Bearer authentication schemes for convenience.
You first need to generate a new API Key in GrowthBook. Different keys have different permissions:
- Personal Access Tokens: These are sensitive and provide the same level of access as the user has to an organization. These can be created by going to
Personal Access Tokens
under the your user menu. - Secret Keys: These are sensitive and provide the level of access for the role, which currently is either
admin
orreadonly
. Only Admins with themanageApiKeys
permission can manage Secret Keys on behalf of an organization. These can be created by going toSettings -> API Keys
If using HTTP Basic auth, pass the Secret Key as the username and leave the password blank:
curl https://api.growthbook.io/api/v1 \
-u secret_abc123DEF456:
# The ":" at the end stops curl from asking for a password
If using Bearer auth, pass the Secret Key as the token:
curl https://api.growthbook.io/api/v1 \
-H "Authorization: Bearer secret_abc123DEF456"
The API may return the following error status codes:
- 400 - Bad Request - Often due to a missing required parameter
- 401 - Unauthorized - No valid API key provided
- 402 - Request Failed - The parameters are valid, but the request failed
- 403 - Forbidden - Provided API key does not have the required access
- 404 - Not Found - Unknown API route or requested resource
- 429 - Too Many Requests - You exceeded the rate limit of 60 requests per minute. Try again later.
- 5XX - Server Error - Something went wrong on GrowthBook's end (these are rare)
The response body will be a JSON object with the following properties:
- message - Information about the error
Get all projects
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/projects \ -u secret_abc123DEF456:
Response samples
- 200
{- "projects": [
- {
- "id": "string",
- "name": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "description": "string",
- "settings": {
- "statsEngine": "string"
}
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Get a single project
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/projects/prj_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "project": {
- "id": "string",
- "name": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "description": "string",
- "settings": {
- "statsEngine": "string"
}
}
}
Get all features
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
projectId | string Filter by project id |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/features \ -u secret_abc123DEF456:
Response samples
- 200
{- "features": [
- {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": null,
- "savedGroups": [ ]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": null,
- "savedGroups": [ ]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Create a single feature
Authorizations:
Request Body schema: application/json
id required | string A unique key name for the feature. Feature keys can only include letters, numbers, hyphens, and underscores. |
archived | boolean |
description | string Description of the feature |
owner required | string Email of the person who owns this experiment |
project | string An associated project ID |
valueType required | string Enum: "boolean" "string" "number" "json" The data type of the feature payload. Boolean by default. |
defaultValue required | string Default value when feature is enabled. Type must match |
tags | Array of strings List of associated tags |
object A dictionary of environments that are enabled for this feature. Keys supply the names of environments. Environments belong to organization and are not specified will be disabled by default. | |
jsonSchema | string Use JSON schema to validate the payload of a JSON-type feature value (enterprise only). |
Responses
Request samples
- Payload
- cURL
{- "id": "string",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "jsonSchema": "string"
}
Response samples
- 200
{- "feature": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
}
Get a single feature
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/features/my_feature \ -u secret_abc123DEF456:
Response samples
- 200
{- "feature": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
}
Partially update a feature
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
description | string Description of the feature |
archived | boolean |
project | string An associated project ID |
owner | string |
defaultValue | string |
tags | Array of strings List of associated tags. Will override tags completely with submitted list |
object | |
jsonSchema | string Use JSON schema to validate the payload of a JSON-type feature value (enterprise only). |
Responses
Request samples
- Payload
- cURL
{- "description": "string",
- "archived": true,
- "project": "string",
- "owner": "string",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "force",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "jsonSchema": "string"
}
Response samples
- 200
{- "feature": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
}
Toggle a feature in one or more environments
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
reason | string |
required | object |
Responses
Request samples
- Payload
- cURL
{- "reason": "string",
- "environments": {
- "property1": true,
- "property2": true
}
}
Response samples
- 200
{- "feature": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- null
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
}
Get all data sources
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
projectId | string Filter by project id |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/data-sources \ -u secret_abc123DEF456:
Response samples
- 200
{- "dataSources": [
- {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "type": "string",
- "name": "string",
- "description": "string",
- "projectIds": [
- "string"
], - "eventTracker": "string",
- "identifierTypes": [
- {
- "id": "string",
- "description": "string"
}
], - "assignmentQueries": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "identifierType": "string",
- "sql": "string",
- "includesNameColumns": true,
- "dimensionColumns": [
- "string"
]
}
], - "identifierJoinQueries": [
- {
- "identifierTypes": [
- "string"
], - "sql": "string"
}
], - "mixpanelSettings": {
- "viewedExperimentEventName": "string",
- "experimentIdProperty": "string",
- "variationIdProperty": "string",
- "extraUserIdProperty": "string"
}
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Get a single data source
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/data-sources/ds_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "dataSource": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "type": "string",
- "name": "string",
- "description": "string",
- "projectIds": [
- "string"
], - "eventTracker": "string",
- "identifierTypes": [
- {
- "id": "string",
- "description": "string"
}
], - "assignmentQueries": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "identifierType": "string",
- "sql": "string",
- "includesNameColumns": true,
- "dimensionColumns": [
- "string"
]
}
], - "identifierJoinQueries": [
- {
- "identifierTypes": [
- "string"
], - "sql": "string"
}
], - "mixpanelSettings": {
- "viewedExperimentEventName": "string",
- "experimentIdProperty": "string",
- "variationIdProperty": "string",
- "extraUserIdProperty": "string"
}
}
}
Get all metrics
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
projectId | string Filter by project id |
datasourceId | string Filter by Data Source |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/metrics \ -u secret_abc123DEF456:
Response samples
- 200
{- "metrics": [
- {
- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "cap": 0,
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Create a single metric
Authorizations:
Request Body schema: application/json
datasourceId required | string ID for the DataSource |
owner | string Name of the person who owns this metric |
name required | string Name of the metric |
description | string Description of the metric |
type required | |
tags | Array of strings List of tags |
projects | Array of strings List of project IDs for projects that can access this metric |
archived | boolean |
object | |
object Preferred way to define SQL. Only one of | |
object An alternative way to specify a SQL metric, rather than a full query. Using | |
object Only use for MixPanel (non-SQL) Data Sources. Only one of |
Responses
Request samples
- Payload
- cURL
{- "datasourceId": "string",
- "owner": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "cap": 0,
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
Response samples
- 200
{- "metric": {
- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "cap": 0,
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
}
Get a single metric
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/metrics/met_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "metric": {
- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "cap": 0,
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
}
Update a metric
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
owner | string Name of the person who owns this metric |
name | string Name of the metric |
description | string Description of the metric |
type | |
tags | Array of strings List of tags |
projects | Array of strings List of project IDs for projects that can access this metric |
archived | boolean |
object | |
object Preferred way to define SQL. Only one of | |
object An alternative way to specify a SQL metric, rather than a full query. Using | |
object Only use for MixPanel (non-SQL) Data Sources. Only one of |
Responses
Request samples
- Payload
- cURL
{- "owner": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
Response samples
- 200
{- "updatedId": "string"
}
Deletes a metric
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl -X DELETE https://api.growthbook.io/api/v1/metrics/met_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "deletedId": "string"
}
Get all experiments
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
projectId | string Filter by project id |
datasourceId | string Filter by Data Source |
experimentId | string Filter the returned list by the experiment tracking key (id) |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/experiments \ -u secret_abc123DEF456:
Response samples
- 200
{- "experiments": [
- {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Create a single experiment
Authorizations:
Request Body schema: application/json
datasourceId required | string ID for the DataSource |
assignmentQueryId required | string The ID property of one of the assignment query objects associated with the datasource |
trackingKey required | string |
name required | string Name of the experiment |
project | string Project ID which the experiment belongs to |
hypothesis | string Hypothesis of the experiment |
description | string Description of the experiment |
tags | Array of strings |
metrics | Array of strings |
guardrailMetrics | Array of strings |
owner required | string Email of the person who owns this experiment |
archived | boolean |
status | string Enum: "draft" "running" "stopped" |
autoRefresh | boolean |
hashAttribute | string |
hashVersion | number Enum: 1 2 |
releasedVariationId | string |
excludeFromPayload | boolean |
required | Array of objects >= 2 items |
Array of objects |
Responses
Request samples
- Payload
- cURL
{- "datasourceId": "string",
- "assignmentQueryId": "string",
- "trackingKey": "string",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "metrics": [
- "string"
], - "guardrailMetrics": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "draft",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "releasedVariationId": "string",
- "excludeFromPayload": true,
- "variations": [
- {
- "id": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- {
- "path": "string",
- "width": 0,
- "height": 0,
- "description": "string"
}
]
}, - {
- "id": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- {
- "path": "string",
- "width": 0,
- "height": 0,
- "description": "string"
}
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "2019-08-24",
- "dateEnded": "2019-08-24",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [
- 0,
- 0
], - "enabled": true
}, - "targetingCondition": "string",
- "reason": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "variationWeights": [
- 0
]
}
]
}
Response samples
- 200
{- "experiment": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
}
Get a single experiment
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/experiments/exp_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "experiment": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
}
Update a single experiment
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
assignmentQueryId | string |
trackingKey | string |
name | string Name of the experiment |
project | string Project ID which the experiment belongs to |
hypothesis | string Hypothesis of the experiment |
description | string Description of the experiment |
tags | Array of strings |
metrics | Array of strings |
guardrailMetrics | Array of strings |
owner | string Email of the person who owns this experiment |
archived | boolean |
status | string Enum: "draft" "running" "stopped" |
autoRefresh | boolean |
hashAttribute | string |
hashVersion | number Enum: 1 2 |
releasedVariationId | string |
excludeFromPayload | boolean |
Array of objects >= 2 items | |
Array of objects |
Responses
Request samples
- Payload
- cURL
{- "assignmentQueryId": "string",
- "trackingKey": "string",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "metrics": [
- "string"
], - "guardrailMetrics": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "draft",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "releasedVariationId": "string",
- "excludeFromPayload": true,
- "variations": [
- {
- "id": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- {
- "path": "string",
- "width": 0,
- "height": 0,
- "description": "string"
}
]
}, - {
- "id": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- {
- "path": "string",
- "width": 0,
- "height": 0,
- "description": "string"
}
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "2019-08-24",
- "dateEnded": "2019-08-24",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [
- 0,
- 0
], - "enabled": true
}, - "targetingCondition": "string",
- "reason": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "variationWeights": [
- 0
]
}
]
}
Response samples
- 200
{- "experiment": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
}
Get results for an experiment
Authorizations:
path Parameters
id required | string The id of the requested resource |
query Parameters
phase | string |
dimension | string |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/experiments/exp_123abc/results \ -u secret_abc123DEF456:
Response samples
- 200
{- "result": {
- "id": "string",
- "dateUpdated": "string",
- "experimentId": "string",
- "phase": "string",
- "dateStart": "string",
- "dateEnd": "string",
- "dimension": {
- "type": "string",
- "id": "string"
}, - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "queryIds": [
- "string"
], - "results": [
- {
- "dimension": "string",
- "totalUsers": 0,
- "checks": {
- "srm": 0
}, - "metrics": [
- {
- "metricId": "string",
- "variations": [
- {
- "variationId": "string",
- "analyses": [
- {
- "engine": null,
- "numerator": null,
- "denominator": null,
- "mean": null,
- "stddev": null,
- "percentChange": null,
- "ciLow": null,
- "ciHigh": null,
- "pValue": null,
- "risk": null,
- "chanceToBeatControl": null
}
]
}
]
}
]
}
]
}
}
Get all dimensions
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
datasourceId | string Filter by Data Source |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/dimensions \ -u secret_abc123DEF456:
Response samples
- 200
{- "dimensions": [
- {
- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string"
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Get a single dimension
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/dimensions/dim_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "dimension": {
- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string"
}
}
Get all segments
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
datasourceId | string Filter by Data Source |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/segments \ -u secret_abc123DEF456:
Response samples
- 200
{- "segments": [
- {
- "id": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string",
- "dateCreated": "string",
- "dateUpdated": "string"
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Get a single segment
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/segments/seg_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "segment": {
- "id": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string",
- "dateCreated": "string",
- "dateUpdated": "string"
}
}
Get all sdk connections
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
projectId | string Filter by project id |
withProxy | string |
multiOrg | string |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/sdk-connections \ -u secret_abc123DEF456:
Response samples
- 200
{- "connections": [
- {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "organization": "string",
- "languages": [
- "string"
], - "environment": "string",
- "project": "string",
- "projects": [
- "string"
], - "encryptPayload": true,
- "encryptionKey": "string",
- "includeVisualExperiments": true,
- "includeDraftExperiments": true,
- "includeExperimentNames": true,
- "key": "string",
- "proxyEnabled": true,
- "proxyHost": "string",
- "proxySigningKey": "string",
- "sseEnabled": true,
- "hashSecureAttributes": true,
- "remoteEvalEnabled": true
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Get a single sdk connection
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/sdk-connections/sdk_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "sdkConnection": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "organization": "string",
- "languages": [
- "string"
], - "environment": "string",
- "project": "string",
- "projects": [
- "string"
], - "encryptPayload": true,
- "encryptionKey": "string",
- "includeVisualExperiments": true,
- "includeDraftExperiments": true,
- "includeExperimentNames": true,
- "key": "string",
- "proxyEnabled": true,
- "proxyHost": "string",
- "proxySigningKey": "string",
- "sseEnabled": true,
- "hashSecureAttributes": true,
- "remoteEvalEnabled": true
}
}
Get all visual changesets
Authorizations:
path Parameters
id required | string The experiment id the visual changesets belong to |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/experiments/exp_123abc/visual-changesets \ -u secret_abc123DEF456:
Response samples
- 200
{- "visualChangesets": [
- {
- "id": "string",
- "urlPatterns": [
- {
- "include": true,
- "type": "simple",
- "pattern": null
}
], - "editorUrl": "string",
- "experiment": "string",
- "visualChanges": [
- {
- "description": "string",
- "css": "string",
- "js": "string",
- "variation": "string",
- "domMutations": [
- {
- "selector": "string",
- "action": "append",
- "attribute": "string",
- "value": "string",
- "parentSelector": "string",
- "insertBeforeSelector": "string"
}
]
}
]
}
]
}
Get a single visual changeset
Authorizations:
path Parameters
id required | string The id of the requested resource |
query Parameters
includeExperiment | integer Include the associated experiment in payload |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/visual-changesets/ds_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "visualChangeset": {
- "id": "string",
- "urlPatterns": [
- {
- "include": true,
- "type": "simple",
- "pattern": null
}
], - "editorUrl": "string",
- "experiment": "string",
- "visualChanges": [
- {
- "description": "string",
- "css": "string",
- "js": "string",
- "variation": "string",
- "domMutations": [
- {
- "selector": "string",
- "action": "append",
- "attribute": "string",
- "value": "string",
- "parentSelector": "string",
- "insertBeforeSelector": "string"
}
]
}
]
}, - "experiment": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
}
Update a visual changeset
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl -XPUT https://api.growthbook.io/api/v1/visual-changesets/vc_123abc -u secret_abc123DEF456 \ -H "Content-Type: application/json" \ -d '{"editorUrl": "https://docs.growthbook.io", "urlPatterns":"[{ ... }]"}'
Response samples
- 200
{- "nModified": 0,
- "visualChangeset": {
- "id": "string",
- "urlPatterns": [
- {
- "include": true,
- "type": "simple",
- "pattern": null
}
], - "editorUrl": "string",
- "experiment": "string",
- "visualChanges": [
- {
- "description": "string",
- "css": "string",
- "js": "string",
- "variation": "string",
- "domMutations": [
- {
- "selector": "string",
- "action": "append",
- "attribute": "string",
- "value": "string",
- "parentSelector": "string",
- "insertBeforeSelector": "string"
}
]
}
]
}
}
Create a visual change for a visual changeset
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl -XPOST https://api.growthbook.io/api/v1/visual-changesets/vc_123abc/visual-change \ -u secret_abc123DEF456 \ -H "Content-Type: application/json" \ -d '{"variation": "v_123abc", "domMutations":"[]"}'
Response samples
- 200
{- "nModified": 0
}
Update a visual change for a visual changeset
Authorizations:
path Parameters
id required | string The id of the requested resource |
visualChangeId required | string Specify a specific visual change |
Responses
Request samples
- cURL
curl -XPUT https://api.growthbook.io/api/v1/visual-changesets/vc_123abc/visual-change/vch_abc123 \ -u secret_abc123DEF456 \ -H "Content-Type: application/json" \ -d '{"variation": "v_123abc", "domMutations":"[]"}'
Response samples
- 200
{- "nModified": 0
}
Defined sets of attribute values which can be used with feature rules for targeting features at particular users.
Get all saved group
Authorizations:
query Parameters
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/saved-groups \ -u secret_abc123DEF456:
Response samples
- 200
{- "savedGroups": [
- {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "source": "inline",
- "owner": "string",
- "attributeKey": "string",
- "values": [
- "string"
]
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Create a single saved group
Authorizations:
Request Body schema: application/json
name required | string The display name of the Saved Group |
source | string Enum: "inline" "runtime" |
values | Array of strings An array of values to target (Ex: a list of userIds). Not applicable for runtime groups |
attributeKey required | string For inline groups, the name of the attribute the values belong to (e.g. |
owner | string The person or team that owns this Saved Group. If no owner, you can pass an empty string. |
Responses
Request samples
- Payload
- cURL
{- "name": "string",
- "source": "inline",
- "values": [
- "string"
], - "attributeKey": "string",
- "owner": "string"
}
Response samples
- 200
{- "savedGroup": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "source": "inline",
- "owner": "string",
- "attributeKey": "string",
- "values": [
- "string"
]
}
}
Get a single saved group
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/saved-groups/ds_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "savedGroup": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "source": "inline",
- "owner": "string",
- "attributeKey": "string",
- "values": [
- "string"
]
}
}
Partially update a single saved group
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
name | string The display name of the Saved Group |
values | Array of strings An array of values to target (Ex: a list of userIds). |
owner | string The person or team that owns this Saved Group. If no owner, you can pass an empty string. |
attributeKey | string (Runtime groups only) The key used to reference the Saved Group in the SDK |
Responses
Request samples
- Payload
- cURL
{- "name": "string",
- "values": [
- "string"
], - "owner": "string",
- "attributeKey": "string"
}
Response samples
- 200
{- "savedGroup": {
- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "source": "inline",
- "owner": "string",
- "attributeKey": "string",
- "values": [
- "string"
]
}
}
Deletes a single saved group
Authorizations:
path Parameters
id required | string The id of the requested resource |
Responses
Request samples
- cURL
curl -X DELETE https://api.growthbook.io/api/v1/saved-groups/grp_123abc \ -u secret_abc123DEF456:
Response samples
- 200
{- "deletedId": "string"
}
Organizations are used for multi-org deployments where different teams can run their own isolated feature flags and experiments. These endpoints are only via a super-admin's Personal Access Token.
Get all organizations (only for super admins on multi-org Enterprise Plan only)
Authorizations:
query Parameters
search | string Search string to search organization names, owner emails, and external ids by |
limit | integer Default: 10 The number of items to return |
offset | integer Default: 0 How many items to skip (use in conjunction with limit for pagination) |
Responses
Request samples
- cURL
curl https://api.growthbook.io/api/v1/organizations \ -u secret_abc123DEF456:
Response samples
- 200
{- "organizations": [
- {
- "id": "string",
- "externalId": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "name": "string",
- "ownerEmail": "string"
}
], - "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
Create a single organization (only for super admins on multi-org Enterprise Plan only)
Authorizations:
Request Body schema: application/json
name required | string The name of the organization |
externalId | string An optional identifier that you use within your company for the organization |
Responses
Request samples
- Payload
- cURL
{- "name": "string",
- "externalId": "string"
}
Response samples
- 200
{- "organization": {
- "id": "string",
- "externalId": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "name": "string",
- "ownerEmail": "string"
}
}
Edit a single organization (only for super admins on multi-org Enterprise Plan only)
Authorizations:
path Parameters
id required | string The id of the requested resource |
Request Body schema: application/json
name | string The name of the organization |
externalId | string An optional identifier that you use within your company for the organization |
Responses
Request samples
- Payload
- cURL
{- "name": "string",
- "externalId": "string"
}
Response samples
- 200
{- "organization": {
- "id": "string",
- "externalId": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "name": "string",
- "ownerEmail": "string"
}
}
id required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
type required | string |
name required | string |
description required | string |
projectIds required | Array of strings |
eventTracker required | string |
required | Array of objects |
required | Array of objects |
required | Array of objects |
object |
{- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "type": "string",
- "name": "string",
- "description": "string",
- "projectIds": [
- "string"
], - "eventTracker": "string",
- "identifierTypes": [
- {
- "id": "string",
- "description": "string"
}
], - "assignmentQueries": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "identifierType": "string",
- "sql": "string",
- "includesNameColumns": true,
- "dimensionColumns": [
- "string"
]
}
], - "identifierJoinQueries": [
- {
- "identifierTypes": [
- "string"
], - "sql": "string"
}
], - "mixpanelSettings": {
- "viewedExperimentEventName": "string",
- "experimentIdProperty": "string",
- "variationIdProperty": "string",
- "extraUserIdProperty": "string"
}
}
id required | string |
dateCreated required | string |
dateUpdated required | string |
owner required | string |
datasourceId required | string |
identifierType required | string |
name required | string |
query required | string |
{- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string"
}
id required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
name required | string |
project required | string |
hypothesis required | string |
description required | string |
tags required | Array of strings |
owner required | string |
archived required | boolean |
status required | string |
autoRefresh required | boolean |
hashAttribute required | string |
hashVersion required | number Enum: 1 2 |
required | Array of objects |
required | Array of objects |
required | object (ExperimentAnalysisSettings) |
object |
{- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "project": "string",
- "hypothesis": "string",
- "description": "string",
- "tags": [
- "string"
], - "owner": "string",
- "archived": true,
- "status": "string",
- "autoRefresh": true,
- "hashAttribute": "string",
- "hashVersion": 1,
- "variations": [
- {
- "variationId": "string",
- "key": "string",
- "name": "string",
- "description": "string",
- "screenshots": [
- "string"
]
}
], - "phases": [
- {
- "name": "string",
- "dateStarted": "string",
- "dateEnded": "string",
- "reasonForStopping": "string",
- "seed": "string",
- "coverage": 0,
- "trafficSplit": [
- {
- "variationId": "string",
- "weight": 0
}
], - "namespace": {
- "namespaceId": "string",
- "range": [ ]
}, - "targetingCondition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
]
}
], - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "resultSummary": {
- "status": "string",
- "winner": "string",
- "conclusions": "string",
- "releasedVariationId": "string",
- "excludeFromPayload": true
}
}
datasourceId required | string |
assignmentQueryId required | string |
experimentId required | string |
segmentId required | string |
queryFilter required | string |
inProgressConversions required | any Enum: "include" "exclude" |
attributionModel required | any Enum: "firstExposure" "experimentDuration" |
statsEngine required | any Enum: "bayesian" "frequentist" |
required | Array of objects (ExperimentMetric) |
required | Array of objects (ExperimentMetric) |
object (ExperimentMetric) |
{- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}
metricId required | string |
required | object |
{- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
id required | string |
dateUpdated required | string |
experimentId required | string |
phase required | string |
dateStart required | string |
dateEnd required | string |
required | object |
required | object (ExperimentAnalysisSettings) |
queryIds required | Array of strings |
required | Array of objects |
{- "id": "string",
- "dateUpdated": "string",
- "experimentId": "string",
- "phase": "string",
- "dateStart": "string",
- "dateEnd": "string",
- "dimension": {
- "type": "string",
- "id": "string"
}, - "settings": {
- "datasourceId": "string",
- "assignmentQueryId": "string",
- "experimentId": "string",
- "segmentId": "string",
- "queryFilter": "string",
- "inProgressConversions": "include",
- "attributionModel": "firstExposure",
- "statsEngine": "bayesian",
- "goals": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "guardrails": [
- {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
], - "activationMetric": {
- "metricId": "string",
- "overrides": {
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "winRiskThreshold": 0,
- "loseRiskThreshold": 0
}
}
}, - "queryIds": [
- "string"
], - "results": [
- {
- "dimension": "string",
- "totalUsers": 0,
- "checks": {
- "srm": 0
}, - "metrics": [
- {
- "metricId": "string",
- "variations": [
- {
- "variationId": "string",
- "analyses": [
- {
- "engine": "bayesian",
- "numerator": 0,
- "denominator": 0,
- "mean": 0,
- "stddev": 0,
- "percentChange": 0,
- "ciLow": 0,
- "ciHigh": 0,
- "pValue": 0,
- "risk": 0,
- "chanceToBeatControl": 0
}
]
}
]
}
]
}
]
}
id required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
archived required | boolean |
description required | string |
owner required | string |
project required | string |
valueType required | string Enum: "boolean" "string" "number" "json" |
defaultValue required | string |
tags required | Array of strings |
required | object |
required | object |
{- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "archived": true,
- "description": "string",
- "owner": "string",
- "project": "string",
- "valueType": "boolean",
- "defaultValue": "string",
- "tags": [
- "string"
], - "environments": {
- "property1": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}, - "property2": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
}, - "revision": {
- "version": 0,
- "comment": "string",
- "date": "2019-08-24T14:15:22Z",
- "publishedBy": "string"
}
}
defaultValue required | string or number or array or object or null |
Array of objects |
{- "defaultValue": "string",
- "rules": [
- {
- "force": "string",
- "weights": [
- null
], - "variations": [
- "string"
], - "hashAttribute": "string",
- "namespace": [
- 0,
- 0,
- 0
], - "key": "string",
- "coverage": 0,
- "condition": { }
}
]
}
enabled required | boolean |
defaultValue required | string |
required | Array of FeatureForceRule (object) or FeatureRolloutRule (object) or FeatureExperimentRule (object) or FeatureExperimentRefRule (object) (FeatureRule) |
definition | string A JSON stringified FeatureDefinition |
object |
{- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string",
- "draft": {
- "enabled": true,
- "defaultValue": "string",
- "rules": [
- {
- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
], - "definition": "string"
}
}
description required | string |
id required | string |
enabled required | boolean |
type required | string |
condition | string |
required | Array of objects |
experimentId required | string |
{- "description": "string",
- "id": "string",
- "enabled": true,
- "type": "string",
- "condition": "string",
- "variations": [
- {
- "value": "string",
- "variationId": "string"
}
], - "experimentId": "string"
}
description required | string |
condition required | string |
id required | string |
enabled required | boolean |
type required | string |
trackingKey | string |
hashAttribute | string |
namespace | obect |
coverage | number |
Array of objects |
{- "description": "string",
- "condition": "string",
- "id": "string",
- "enabled": true,
- "type": "string",
- "trackingKey": "string",
- "hashAttribute": "string",
- "namespace": null,
- "coverage": 0,
- "value": [
- {
- "value": "string",
- "weight": 0,
- "name": "string"
}
]
}
description required | string |
condition required | string |
Array of objects | |
id required | string |
enabled required | boolean |
type required | string |
value required | string |
{- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
description required | string |
condition required | string |
Array of objects | |
id required | string |
enabled required | boolean |
type required | string |
value required | string |
coverage required | number |
hashAttribute required | string |
{- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string",
- "coverage": 0,
- "hashAttribute": "string"
}
description required | string |
condition required | string |
Array of objects | |
id required | string |
enabled required | boolean |
type required | string |
value required | string |
{- "description": "string",
- "condition": "string",
- "savedGroupTargeting": [
- {
- "matchType": "all",
- "savedGroups": [
- "string"
]
}
], - "id": "string",
- "enabled": true,
- "type": "string",
- "value": "string"
}
id required | string |
dateCreated required | string |
dateUpdated required | string |
owner required | string |
datasourceId required | string |
name required | string |
description required | string |
type required | string Enum: "binomial" "count" "duration" "revenue" |
tags required | Array of strings |
projects required | Array of strings |
archived required | boolean |
required | object |
object | |
object | |
object |
{- "id": "string",
- "dateCreated": "string",
- "dateUpdated": "string",
- "owner": "string",
- "datasourceId": "string",
- "name": "string",
- "description": "string",
- "type": "binomial",
- "tags": [
- "string"
], - "projects": [
- "string"
], - "archived": true,
- "behavior": {
- "goal": "increase",
- "cap": 0,
- "capping": "absolute",
- "capValue": 0,
- "conversionWindowStart": 0,
- "conversionWindowEnd": 0,
- "riskThresholdSuccess": 0,
- "riskThresholdDanger": 0,
- "minPercentChange": 0,
- "maxPercentChange": 0,
- "minSampleSize": 0
}, - "sql": {
- "identifierTypes": [
- "string"
], - "conversionSQL": "string",
- "userAggregationSQL": "string",
- "denominatorMetricId": "string"
}, - "sqlBuilder": {
- "identifierTypeColumns": [
- {
- "identifierType": "string",
- "columnName": "string"
}
], - "tableName": "string",
- "valueColumnName": "string",
- "timestampColumnName": "string",
- "conditions": [
- {
- "column": "string",
- "operator": "string",
- "value": "string"
}
]
}, - "mixpanel": {
- "eventName": "string",
- "eventValue": "string",
- "userAggregation": "string",
- "conditions": [
- {
- "property": "string",
- "operator": "string",
- "value": "string"
}
]
}
}
id | string The Growthbook unique identifier for the organization |
externalId | string An optional identifier that you use within your company for the organization |
dateCreated | string <date-time> The date the organization was created |
name | string The name of the organization |
ownerEmail | string The email address of the organization owner |
{- "id": "string",
- "externalId": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "name": "string",
- "ownerEmail": "string"
}
limit required | integer |
offset required | integer |
count required | integer |
total required | integer |
hasMore required | boolean |
nextOffset required | integer or null |
{- "limit": 0,
- "offset": 0,
- "count": 0,
- "total": 0,
- "hasMore": true,
- "nextOffset": 0
}
id required | string |
name required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
description | string |
object |
{- "id": "string",
- "name": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "description": "string",
- "settings": {
- "statsEngine": "string"
}
}
id required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
name required | string |
source required | string Enum: "inline" "runtime" |
owner | string |
attributeKey required | string |
values required | Array of strings |
{- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "source": "inline",
- "owner": "string",
- "attributeKey": "string",
- "values": [
- "string"
]
}
id required | string |
dateCreated required | string <date-time> |
dateUpdated required | string <date-time> |
name required | string |
organization required | string |
languages required | Array of strings |
environment required | string |
project required | string Use 'projects' instead. This is only for backwards compatibility and contains the first project only. |
projects | Array of strings |
encryptPayload required | boolean |
encryptionKey required | string |
includeVisualExperiments | boolean |
includeDraftExperiments | boolean |
includeExperimentNames | boolean |
key required | string |
proxyEnabled required | boolean |
proxyHost required | string |
proxySigningKey required | string |
sseEnabled | boolean |
hashSecureAttributes | boolean |
remoteEvalEnabled | boolean |
{- "id": "string",
- "dateCreated": "2019-08-24T14:15:22Z",
- "dateUpdated": "2019-08-24T14:15:22Z",
- "name": "string",
- "organization": "string",
- "languages": [
- "string"
], - "environment": "string",
- "project": "string",
- "projects": [
- "string"
], - "encryptPayload": true,
- "encryptionKey": "string",
- "includeVisualExperiments": true,
- "includeDraftExperiments": true,
- "includeExperimentNames": true,
- "key": "string",
- "proxyEnabled": true,
- "proxyHost": "string",
- "proxySigningKey": "string",
- "sseEnabled": true,
- "hashSecureAttributes": true,
- "remoteEvalEnabled": true
}
id required | string |
owner required | string |
datasourceId required | string |
identifierType required | string |
name required | string |
query required | string |
dateCreated required | string |
dateUpdated required | string |
{- "id": "string",
- "owner": "string",
- "datasourceId": "string",
- "identifierType": "string",
- "name": "string",
- "query": "string",
- "dateCreated": "string",
- "dateUpdated": "string"
}
description | string |
css | string |
js | string |
variation required | string |
Array of objects |
{- "description": "string",
- "css": "string",
- "js": "string",
- "variation": "string",
- "domMutations": [
- {
- "selector": "string",
- "action": "append",
- "attribute": "string",
- "value": "string",
- "parentSelector": "string",
- "insertBeforeSelector": "string"
}
]
}
id | string |
required | Array of objects |
editorUrl required | string |
experiment required | string |
required | Array of objects |
{- "id": "string",
- "urlPatterns": [
- {
- "include": true,
- "type": "simple",
- "pattern": null
}
], - "editorUrl": "string",
- "experiment": "string",
- "visualChanges": [
- {
- "description": "string",
- "css": "string",
- "js": "string",
- "variation": "string",
- "domMutations": [
- {
- "selector": "string",
- "action": "append",
- "attribute": "string",
- "value": "string",
- "parentSelector": "string",
- "insertBeforeSelector": "string"
}
]
}
]
}