Skip to main content
POST
/
console
/
v1
/
param_stores
Create Param Store
curl --request POST \
  --url https://statsigapi.net/console/v1/param_stores \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "displayName": "<string>",
  "targetAppIDs": [
    "<string>"
  ],
  "tags": [
    "<string>"
  ],
  "team": "<string>"
}'
{
  "message": "Param Store read successfully.",
  "data": {
    "id": "6O13wytnLL1Lss5QgUSAeu",
    "name": "param 1",
    "displayName": "param 1",
    "description": "",
    "createdTime": 1734618662756,
    "creatorID": "5O908pyGoCqw6QH1nt8v82",
    "lastModifierID": "5O908pyGoCqw6QH1nt8v82",
    "parameters": [
      {
        "name": "prm1",
        "ref_type": "static",
        "param_type": "boolean",
        "value": false
      },
      {
        "name": "prm2",
        "ref_type": "static",
        "param_type": "boolean",
        "value": 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
name
string
required

Param Store Name

description
string
required

Param Store Description

displayName
string
required

Param Store Display Name

targetAppIDs
string[]

Target App IDs

tags
string[]

Tags

team
string

Team

Response

200 - application/json

Create param store

message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.

I